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
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