public static void Main()
double a75, a85, a90, a95;
double b75, b85, b90, b95;
Console.WriteLine("===================================================");
Console.Write("please input your first name- ");
Console.Write("last name- ");
Console.Write("please input your bench press maximum- ");
alpha = Convert.ToDouble(Console.ReadLine());
Console.Write("squat maximum- ");
beta = Convert.ToDouble(Console.ReadLine());
a75 = Math.Round(a1 / 5) * 5;
a85 = Math.Round(a2 / 5) * 5;
a90 = Math.Round(a3 / 5) * 5;
a95 = Math.Round(a4 / 5) * 5;
b75 = Math.Round(b1 / 5) * 5;
b85 = Math.Round(b2 / 5) * 5;
b90 = Math.Round(b3 / 5) * 5;
b95 = Math.Round(b4 / 5) * 5;
Console.WriteLine("+++++++++++++++++++++++++++++++++++++++++++++++++++");
string date = DateTime.UtcNow.ToString("MM-dd-yyyy");
Console.WriteLine("{0}", date);
Console.WriteLine("{0} {1}", a,b);
Console.WriteLine("coulculated output workout plan");
Console.WriteLine("bench press");
Console.WriteLine("8 reps of {0}",a75);
Console.WriteLine("6 reps of {0}",a85);
Console.WriteLine("4 reps of {0}",a90);
Console.WriteLine("2 reps of {0}",a95);
Console.WriteLine("squats");
Console.WriteLine("8 reps of {0}", b75);
Console.WriteLine("6 reps of {0}", b85);
Console.WriteLine("4 reps of {0}", b90);
Console.WriteLine("2 reps of {0}", b95);
Console.WriteLine("===================================================");