# Kelvin Ly
# 10/07/12
# Part E: Determines whether you'll get the scholarship.

# Get the user's SAT and GPA.
SAT = int(input("What is your SAT score?\n"))
GPA = float(input("What is your GPA?\n"))

if  SAT >= 1100 and GPA >= 3.0:
	print("Great, you qualify for the scholarship!")
else:
	print("Sorry, you don't qualify for the scholarship.")

