What is the output when the following code is executed? score = 65 group = 2 if score <= 60: group = group + 2 elif score <= 70: group = group + 3 elif score <= 80: group = group + 4 else: group = group + 5 print(group)