# Kelvin Ly
# 10/07/12
# Part C: Determines which video game you will receive (lucky you!)

# Get your GPA (Note we're using float() rather than int())
GPA = float(input("What is your GPA?\n"))

if GPA > 3.8:
	
	# Playstation

	print("Great, you will get a Playstation 3 for your good grades!")

elif GPA > 3.5:
	
	# Kinect. Note that we don't need to include the condition
	# 'GPA <=3.8', since that's implicitly given by the fact
	# we're using an elif; it'll only get here if GPA is not
	# greater than 3.8, or equivalently, if it's less than
	# or equal to 3.8.

	print("Great, you will get a Kinect for your good grades!")

elif GPA >= 3.0:

	# Wii. Same logic as for the Kinect.
	print("Great, you will get Wii for your good grades!")

else:
	# If it's anything below 3.0
	print("Sorry, you do not get a game system for your poor grades.")
