using System; public class Program{ static void Main(){ int a = 2; int b = 5; Console.WriteLine((a + b - 1) / a); Console.WriteLine(); } }