Help me in solving INSTNOODLE problem

My issue

x=7
y=8
c=x*y
print(c)

My code

# cook your dish here
x=7
y=8
c=x*y
print(c)

Problem Link: INSTNOODLE Problem - CodeChef

@likhitha2805
U have to do it like this.

x,y = map(int,input().split())
ans = x*y 
print(ans)