Computer Science, asked by diljotsinghdhillon, 10 months ago

write a Python program to find elder person two persons​

Answers

Answered by inboxsgk
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 mittaltanu1
2

Explanation:

is this the procedure...

Similar questions