We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encountering error during compilation of code with more than one input. Here is the code: a = input() b = input() print(a, b)
a = input()
b = input()
print(a, b)
And here is the compilation message:
Traceback (most recent call last): File "/app/codes/63db007e-7ed3-473e-abe9-d5a0e2c95fa8.py", line 2, in b = input() EOFError: EOF when reading a line
The text was updated successfully, but these errors were encountered:
Hi. You have to send each Input data from a new line.
Sorry, something went wrong.
No branches or pull requests
Encountering error during compilation of code with more than one input. Here is the code:
a = input()
b = input()
print(a, b)
And here is the compilation message:
Traceback (most recent call last):
File "/app/codes/63db007e-7ed3-473e-abe9-d5a0e2c95fa8.py", line 2, in
b = input()
EOFError: EOF when reading a line
The text was updated successfully, but these errors were encountered: