using System;
public class Program
{
public static void Main()
int num1=0;
int num2=0;
// Ask the user to type the first number.
Console.WriteLine("Type a number, and then press Enter");
num1 = Convert.ToInt32(Console.ReadLine());
// Ask the user to type the second number.
num2 = Convert.ToInt32(Console.ReadLine());
//Resultat (somme).
}