My issue
Why do I have to use a comma after int (given in the solution) ??
My code
# cook your dish here
x,y = map(int(input().split())
print(x*y)
Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone
Why do I have to use a comma after int (given in the solution) ??
# cook your dish here
x,y = map(int(input().split())
print(x*y)
Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone