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