Help me in solving BIRYANI problem

My issue

My code

T=int(input())
for i in (T):
    Y,X=map(int,input().split())
    print(Y*X)

Problem Link: BIRYANI Problem - CodeChef

cook your dish here

for t in range(int(input())):
x,y =map(int,input().split())
print(x*y)
try this

1 Like

Thanks

1 Like