using System;
public class Program
{
public static void Main()
/* Let's declare and
print variable in C#. */
int x = 50;
Console.WriteLine(x);
}