namespace arithmeticCalculator
public static void Main(string[] args)
________ ________ ___ _________ ___ ___ _____ ______ _______ _________ ___ ________
|\ __ \|\ __ \|\ \|\___ ___\\ \|\ \|\ _ \ _ \|\ ___ \|\___ ___\\ \|\ ____\
\ \ \|\ \ \ \|\ \ \ \|___ \ \_\ \ \\\ \ \ \\\__\ \ \ \ __/\|___ \ \_\ \ \ \ \___|
\ \ __ \ \ _ _\ \ \ \ \ \ \ \ __ \ \ \\|__| \ \ \ \_|/__ \ \ \ \ \ \ \ \
\ \ \ \ \ \ \\ \\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \_|\ \ \ \ \ \ \ \ \ \____
\ \__\ \__\ \__\\ _\\ \__\ \ \__\ \ \__\ \__\ \__\ \ \__\ \_______\ \ \__\ \ \__\ \_______\
\|__|\|__|\|__|\|__|\|__| \|__| \|__|\|__|\|__| \|__|\|_______| \|__| \|__|\|_______|
________ ________ ___ ________ ___ ___ ___ ________ _________ ________ ________
|\ ____\|\ __ \|\ \ |\ ____\|\ \|\ \|\ \ |\ __ \|\___ ___\\ __ \|\ __ \
\ \ \___|\ \ \|\ \ \ \ \ \ \___|\ \ \\\ \ \ \ \ \ \|\ \|___ \ \_\ \ \|\ \ \ \|\ \
\ \ \ \ \ __ \ \ \ \ \ \ \ \ \\\ \ \ \ \ \ __ \ \ \ \ \ \ \\\ \ \ _ _\
\ \ \____\ \ \ \ \ \ \____\ \ \____\ \ \\\ \ \ \____\ \ \ \ \ \ \ \ \ \ \\\ \ \ \\ \|
\ \_______\ \__\ \__\ \_______\ \_______\ \_______\ \_______\ \__\ \__\ \ \__\ \ \_______\ \__\\ _\
\|_______|\|__|\|__|\|_______|\|_______|\|_______|\|_______|\|__|\|__| \|__| \|_______|\|__|\|__|
Console.WriteLine(ascii1);
Console.WriteLine(ascii2);
for (int c = 0; c < 1; c = Convert.ToInt32(Console.ReadLine()))
double a = Convert.ToDouble(Console.ReadLine());
string func = Convert.ToString(Console.ReadLine());
double b = Convert.ToDouble(Console.ReadLine());
Console.WriteLine(a * b);
Console.WriteLine(a / b);
Console.WriteLine(a += b);
Console.WriteLine(a -= b);
Console.WriteLine(Math.Pow(a, b));
Console.WriteLine(Math.Pow(b, 1.0 / a));
Console.WriteLine("enter 0 to begin new calculation, or 1 to end program");