kudos = raw_input("How many kudos do I deserve?: ") #In this case, the 'kudos' will be what the user has made an input on
kudos_you = raw_input("How many do you deserve?: ") #raw_input allows the user to type whatever they feel free to
username = raw_input("What is your dream username (lol sad): ") #The question is always opened by (" and then a closing ")
print "So, you think I deserve exactly %s" % (kudos) #The 'print' command is simple, it prints (kudos) which is what the user has typed
print "kudos, you think you deserve %s" % (kudos_you) #A printed string is always defined by opening and closing brackets beginning with a %
print "kudos and your dream username is %s" % (username) #Always end your output with %s then a ", the %s is initially from the language C
print "Thanks for entering my interesting quiz." #Just a random end quote