-1
How to read two integer variables on the same line with Python?
a= int(input())
b = int(input())
-1
How to read two integer variables on the same line with Python?
a= int(input())
b = int(input())
0
The code below should help:
N, M = [int(x) for x in input().split(" ")]
I would not like to explain a little what happens in this line/ She is correct, ma It can be magical demias for those who asked or oturas people with same doubt.
The point is : "How the code below will help?". You need to explain. You seem to be responding to someone who will understand. However, other users would like to benefit from this answer.
Browser other questions tagged python
You are not signed in. Login or sign up in order to post.
Take a look at this Link.
– Solkarped