#AGE CALCULATOION IN PYTHON: def calculator(age): age = (2022 - int(age)) print("You are "+str(age)+" years Old") calculator(input("Type your Birth Year: ")) #The easy way to calculate anyones age.Very simple trick. # Just call a function