Why am I getting "EOF when reading a line" in my code
I was doing the ballpark coding challenge and my code works in the coding playground but it does not working in the challenge. I keep getting " line 20, item2 = input(), EOFf when reading a line". Code as follows: menu = ['Nachos, Pizza, Cheeseburger, Water, Coke'] total1 = 0 item1 = input() if item1 == 'Nachos': total1 += 6 elif item1 == 'Pizza': total1 += 6 elif item1 == 'Cheeseburger': total1 += 10 elif item1 == 'Water': total1 += 4 elif item1 == 'Coke': total1 += 5 else: total1 += 5 total2 = total1 item2 = input() if item2 == 'Nachos': total2 += 6 elif item2 == 'Pizza': total2 += 6 elif item2 == 'Cheeseburger': total2 += 10 elif item2 == 'Water': total2 += 4 elif item2 == 'Coke': total2 += 5 else: total2 += 5 total3 = total2 item3 = input() if item3 == 'Nachos': total3 += 6 elif item3 == 'Pizza': total3 += 6 elif item3 == 'Cheeseburger': total3 += 10 elif item3 == 'Water': total3 += 4 elif item3 == 'Coke': total3 += 5 else: total3 += 5 total4 = total3 item4 = input() if item4 == 'Nachos': total4 += 6 elif item4 == 'Pizza': total4 += 6 elif item4 == 'Cheeseburger': total4 += 10 elif item4 == 'Water': total4 += 4 elif item4 == 'Coke': total4 += 5 else: total4 += 5 total = total4 tax = total*0.07 print(tax)