# age-O-meter
age1 = raw_input("how old are you?")
age2 = raw_input("how old is your friend?")
age1 - age2
calculate = age1, - age2
ok lets says u set how old are you to 30 and how old is your friend to 50 the result should be 20 put its not working and idk what i did wrong
I suppose you could also use an if statement, say...
if age1 >= age2:
calculate = age1 - age2
else:
calculate = age2 - age1
Seems like it would work to me, but i am just learning.