public static void Main()
Console.WriteLine("Welcome to the addition only caculator.");
Console.WriteLine("Please enter you numbers and press enter.");
Console.WriteLine("If you want to exit, type exit and press enter.");
string str = Console.ReadLine();
Console.WriteLine("thank you for using our calculator");
Console.WriteLine("enter your first number here: ");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter your second number here: ");
int y = Convert.ToInt32(Console.ReadLine());
Console.WriteLine($"your sum is {sum}");
Console.WriteLine("Thank you for using our app.");