public static void Main()
Console.WriteLine("Hello World");
double jump1, jump2, jump3,FT1,FT2,FT3;
string Fname, Lname, date;
Console.WriteLine("What is the athlete's First name?");
Fname = Console.ReadLine();
Console.WriteLine("What is the athlete's Last name?");
Lname = Console.ReadLine();
Console.WriteLine("What is the current date?");
date = Console.ReadLine();
Console.WriteLine("What was the length of his/her 1st long jump attempt in meters?");
jump1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("What was the length of his/her 2nd long jump attempt in meters?");
jump2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("What was the length of his/her 3rd long jump attempt in meters?");
jump3 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("Athlete's First and Last Name: {0} {1}",Fname,Lname);
Console.WriteLine("Date of Contest was: {0} ", date);
Console.WriteLine("His/Her best attempt in feet's was: {0} ",FT1);
Console.WriteLine("Best attempt in meters was: {0} ",jump1);
Console.WriteLine("His/Her first jump was {0} meters or {1} feet.",jump1,FT1);
Console.WriteLine("His/her secound jump was {0} meter or {1} feet.",jump2,FT2);
Console.WriteLine("His/Her third jump was {0} meters or {1} feet.",jump3,FT3);
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");