# Kelvin Ly
# 10/07/12
# Part F: Determines whether you'll get an honors diploma.

SAT = int(input("What is your SAT score?\n"))
GPA = float(input("What is your GPA?\n"))

if SAT >= 1250 or GPA >=3.6:	# Note the or operator there.
	print("Great, you qualify for the Honors Diploma!")
else:
	print("Sorry, you don't quality for the Honors Diploma.")
