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