write a Python program to find elder person two persons
Answers
Answered by
32
age1 = int(input("enter age of person A : "))
age2 = int(input("enter age of person B : "))
if age1 > age2:
print("person A is older than person B")
elif age1 == age2:
print("Both are in the same age")
else:
print("personB is older than Person A")
#please mark this answer as brainliest it helps you
Answered by
2
Explanation:
is this the procedure...
Similar questions