using System;
namespace InchesToCentimeters
{
internal class Program
{
static void Main(string[] args)
{
double inches = double.Parse(Console.ReadLine());
double centimeters = inches * 2.54;
Console.WriteLine(centimeters);
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)