using System;
public class Program
{
public static void Main()
Console.WriteLine("Напишете число и ще е разделено на 2 ");
int a =int.Parse(Console.ReadLine());
int del = a/2;
Console.WriteLine("Отговора е " + del);
}