TOPIC

Run time Error - new in Python

henrique945 asked 5 years ago

Question solved. Code removed.

This topic was solved and cannot recieve new replies.

  • henrique945 replied 5 years ago

    while True:
      try:
        n1=int(input())
        n2=int(input())
        n1=n1*n2*2
        print("{}".format(n1))
      except EOFError:
        break

    i tryed and once again run time error

  • J0aoPaulo replied 5 years ago

    while True:
         try:
             #you code
         except EOFError:
             break