preregistered = input("Did you preregister for this course?")
added_late = input("Did you add the course late?")

if preregistered[0].lower() == 'y' or added_late[0].lower() == 'y':
    print("You are in the course")
else:
    print("You are not in the course")
