float km = float.Parse(Console.ReadLine());
float m = float.Parse(Console.ReadLine());
if ((m * 60 * 60/1000) > km)
{
Console.WriteLine("метров больше чем километров");
}
else if ((m * 60 * 60/1000) < km)
{
Console.WriteLine("метров меньше чем километров");
}
else
{
Console.WriteLine("метры и километры равны");
}