Write a program that reads in two people‘s age and then names, and then output who is older.

read a1,n1

read a2,n2
print (a1>a2) ? n1 : n2