public static void Main()
Console.WriteLine("Please type a Drink and enter followed by a Place and enter");
string drink = Console.ReadLine();
string place = Console.ReadLine();
Console.WriteLine("I Like to Go for a " + drink + " in the " + place);
Console.WriteLine ("Congratulations now, give me two numbers and i will give you the area of a rectangle based on those side values");
string sideOne = Console.ReadLine();
string sideTwo = Console.ReadLine();
int realSideOne = int.Parse(sideOne);
int realSideTwo = int.Parse(sideTwo);
int areaRectangle = realSideOne * realSideTwo;
Console.WriteLine("The area of your Rectangle is " + areaRectangle);
Console.WriteLine("you have Done well to come this far!, now we will calculate the area of a circle, give me the radius value.");
String radiusString = Console.ReadLine();
double radiusNum = double.Parse(radiusString);
double piConstant = 3.14;
double circleArea = radiusNum * radiusNum * piConstant;
Console.WriteLine("the aread of your circle is " + circleArea);
Console.WriteLine("You have succeeded yet again, lets mess around with pythagoras, give me two values for the perpendicular sides of a triangle");
string sideA = Console.ReadLine();
string sideB = Console.ReadLine();
double sideANum = double.Parse(sideA);
double sideBNum = double.Parse(sideB);
double sideCNum = sideANum * sideANum + sideBNum * sideANum;
Console.WriteLine("The length of the missing side is " + sideCNum + " Well done for completing the challenge");