using System;
public class Program
{
public static void Main()
MyMethod();
}
static void MyMethod()
Console.WriteLine("Hello");
int a = 3;
int b = 8;
Console.WriteLine(a + b);