Runtime error

I always got a runtime error for my each program using python 3.6.
like add two number

T = int(input())
for i in range(T):
(a, b) = map(int, input().split(’ '))
sol=a + b
print(sol)
this gives Runtime NZEC

1.) It depends on what you are reading.
2.)

This looks sketchy as hell. those single quotes doesn’t look right.

(a, b) = map(int, input().split(’ β€˜))
(a, b) = map(int, input().split(’ '))
Both are looking different :thinking::thinking:

and What are you reading?

I think that’s right like β€œa, b = map(int, input().split())”

1 Like