Computer Science, asked by missyou, 1 year ago

write a python program to take age of
on employee and print the message years
are left for your retierment. when
the retierment age is 65.​

Answers

Answered by stp2965
1

Answer:

#python 3.7

a=int(input("Enter your age : "))

b= 65-a

print(b," years are left for your Retirement.")

Explanation:

This is a simple code for the question .

you can take any variables instead of 'a' and 'b'.

Thanks

Similar questions