using System;
public class Program
{
public static void Main()
double y = 12.1;
var x = Math.Ceiling(y);
Console.WriteLine(x);
}