using System;
public class Program
{
public static void Main()
float test = 1.13F;
double test2 = test * 100;
Console.WriteLine(test2);
}