What will the following code print? age = 20 if age >= 18 and age <= 30: print("Young Adult") else: print("Not a Young Adult")