using System;
public class Program
{
public static void Main()
int a = 35, b = 5, c =7;
Console.WriteLine(a / b); //7
Console.WriteLine(a / c); //5
}