using System;
public class Program
{
public static void Main()
int x = 5;
int y = 10;
Console.WriteLine(y / x);
}