points= 0
answer = input("how many hours are in a day?")


if answer == "24":
    print ("nice job that's correct")
    points += 1
else:
     print ("sorry that's incorrect")
     points -= 0

answer = input("True or False? Soccer is the most popular sport in the world?")

if answer == "true":
    print ("nice job that's correct")
    points += 1
else:
     print ("sorry that's incorrect")
     points -= 0
answer = input("How many days are in a year?")

if answer == "365":
    print ("nice job that's correct")
    points += 1
else:
     print ("sorry that's incorrect")
     points -= 0
nice job that's correct
nice job that's correct
nice job that's correct