#if/else statement x = int(input("enter integer - your grade in the course ")) #the program checks if you got A, grade A is 95 or above if(x>=95): print("you got A") else: print("you didn't get A") print("End of the program") #How if/else statement works: #1. x>=95 is evaluated #2. if x>=95 is True, program executes if statements, in our case it #prints you got A #3. otherwise (x>=95 is False), else statements are executed, in our case #it prints you didn't get A #In both cases, program proceed to the next statement after if/else and in #our case it will print End of the program