My issue
its showing runtime error each and everytime
My code
# cook your dish here
x,y = map(int,(input().split())
ans = x*y
print(ans)
Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone
its showing runtime error each and everytime
# cook your dish here
x,y = map(int,(input().split())
ans = x*y
print(ans)
Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone
@devadarshini55
U have mistaken in taking the input , u have put extra ( .
U have to do it like this.
x,y = map(int,input().split())
ans = x*y
print(ans)