using System;
public class Program
{
public static void Main()
Console.WriteLine("Въведете число - дължина на диагонал в инч");
double a = double.Parse(Console.ReadLine());
double b = a*2.54 ;
Console.WriteLine ("Големината на диагонала в см е: {0}",b);
}