public static void Main()
Console.WriteLine("Credits: ");
string credits = Console.ReadLine();
Console.WriteLine("GPA: ");
string gpa = Console.ReadLine();
int creditsInt = int.Parse(credits);
double gpaDouble = double.Parse(gpa);
if(creditsInt >= 52 && gpaDouble >= .5){
Console.WriteLine("Yeah! You can Graduate!");
Console.WriteLine("You're not going to graduate. Try again next year!");