using System;
namespace Calculator
{
class Calculator
{
static void Main(string[] args)
{
// basic homemade calculator vscode c# calculator
Console.Write("Enter a number here: ");
int num1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter another number: ");
int num2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(num1 + num2);
// change the operation if you want to
// ex: +, -, *, /, >, <
}
}
}