# Arup Guha
# 4/20/2020
# Solution to COP 2930 Sample Final Exam Part II Question 2

# Read in GPA
gpa = float(input("What is your GPA?\n"))

# Read in com serv hours
comserv = int(input("How many community service hours have you done?\n"))

# Need both requirements use and.
if gpa >= 3.0 and comserv >= 100:
    print("Yes you get the scholarship!")

# Otherwise no scholarship
else:
    print("Sorry, no scholarship.")
