DBdojo DBdojo 22-11-2020 Computers and Technology contestada HELP!! I keep getting an EOFError on line 6 while trying to run my code in python.my code-line 1: num = int(input("Enter a number: "))line 2: c=0line 3: sum=0line 4: while (num<100):line 5: sum=sum+numline 6: num = int(input("Enter a number: "))line 7: c=c+1line 8: print("Sum: " +str(sum))line 9: print("Numbers Entered: "+str(c))