My issue
File “/mnt/sol.py”, line 3
A, B = map(int,input().split(1,2);
^
SyntaxError: invalid syntax
My code
# Update the '_' in the code below
A, B = map(int,input().split(1,2);
C, D, E = map(int, input().split(3,4,5));
F, G, H, I = map(int,input().split(6,7,8,9));
print(A, B, C, D, E, F, G, H, I)
Learning course: Design and Analysis of Algorithms
Problem Link: How to accept multiple integers on separate lines in Design and Analysis of Algorithms