using System.Collections.Generic;
using System.Security.Cryptography;
using System.Threading.Tasks;
public static void Main(string[] args)
Console.WriteLine("Welcome to the super duper shmooper calculator");
Console.Write("First Number: ");
double operand1 = double.Parse(Console.ReadLine());
Console.Write("Enter the operation: ");
string operation1 = Console.ReadLine();
Console.Write("Second Number: ");
double operand2 = double.Parse(Console.ReadLine());
Console.Write("Enter second operation: ");
string operations2 = Console.ReadLine();
Console.Write("Third Number: ");
double operand3 = double.Parse(Console.ReadLine());
result = operand1 + operand2;
else if (operation1 == "-")
result = operand1 - operand2;
else if (operation1 == "*")
result = operand1 * operand2;
else if (operation1 == "/")
result = operand1 / operand2;
Console.WriteLine("Invalid Operation1...");
Console.WriteLine(result + operand3);
else if (operations2 == "-")
Console.WriteLine(result - operand3);
else if (operations2 == "*")
Console.WriteLine(result * operand3);
else if (operations2 == "/")
Console.WriteLine(result / operand3);
Console.WriteLine("Invalid Operation2...");