using System;
public class Program
{
public static void Main()
//2x20 then divided by 4 then multiplied by 10 and then divided by 2
int x = 2 * 20 / 4 * 10 / 2;
Console.WriteLine(x);
}