public int add(int a,int b){
public int sub(int a,int b){
public int mul(int a,int b){
public int div(int a,int b){
public static void Main()
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
operations o = new operations();
while (choice_to == false){
Console.WriteLine("Enter your choice:");
string choice = Console.ReadLine();
Console.WriteLine("The sum of given two numbers is " + o.add(a,b));
Console.WriteLine("The diffrence of given two numbers is " + o.sub(a,b));
Console.WriteLine("The product of given two numbers is " + o.mul(a,b));
Console.WriteLine("The division of given two numbers is " + o.div(a,b));
Console.WriteLine("Enter yes to continue or no to leave");
string c = Console.ReadLine();
Console.WriteLine("poitu vanga tata!!!");