EOF while submission in Python

I’m new here but when i a trying to submit or run i can’t do it.
keep getting the runtime error EOF
please help

solution link –CodeChef: Practical coding for everyone

Is it from any ongoing contest because I can’t access?

its july challenge2020 division 2

Okay! You can’t ask about ongoing contest. You may ask after the contest gets over.

okk
but just tell about removing that EOF error
its working fine with custom input and even in mine VSCode
please!!!

Just search about your error on google. You will get many useful stuff. Even you can search EOF Codechef.
An advice- It is not bad to ask your doubts but make sure before asking you’ve put your effort in finding your doubt/error on your own or on internet.

1 Like

did that about half an hour
didn’t found anything working
submitted 4 times the modified ones
atleast just see the code
please!!!

I can’t. It is ongoing contest. Refer this

okay
thank you very much
appreciate your consideration

1 Like

I can’t share anything about question, but as i feel your question just related to input / output, So you could do something like this.

 while True:
    try:
        x = input()
    except EOFError:
        break

You could get more tricks from stackoverflow.

1 Like

it worked
thank you very much

1 Like

thank you very much both of you
@akshitm16 and @hello_hell

1 Like