I wrote this code and it's not returning any output, I'm not sure why. As far as I can tell I have the returns correct but obviously since there is no output something is wrong.
def main():
j = int(input("Enter a number "))
age = int(input("How old are you? "))
yourBirthPlace()
pentapalooza(j)
oldEnoughToDrinkInGermany(age)
def yourBirthPlace():
return "Chicago"
def pentapalooza(j):
j=j*5
return j
def oldEnoughToDrinkInGermany(age):
result=false
LegalAge = 16
if age>LegalAge:
result= true
return result
main()