Calculator Project

In this classic starter project of using C#, I created a calculator. This was thought out in three simple steps:
1: Getting the Input
2: Storing Values
3: Doing the Calculations

Getting the input was simple enough. Just type in the numbers using the keyboard.
Storing the values was more difficult. The numbers had to be stored as variables in the program.
Making sure the calculations came out after the user hits enter or equals.