# 37. This lesson teaches: multiple parameters in functions,
# more flow control with elif, using functions in functions
# and (data)type conversion.

#

def multiPara(name, last):
    print("You first name is " + name + " and you last name is " + last)
    if name != "Stefan":
        print("Whoa! You're a nerd!")



multiPara("Roberto", "Mischook")
