What is the output of the following Python program? age = 65 if age < 18: print("Child") elif age < 65: print("Adult") else: print("Senior") print("Age category determined.")