Currency Conversion **(11/12/21)**


 

f=int(input())

for i in range(f):

    c=0; f,b=map(float, input().split())

    c=f*b;print('{:.2f}'.format(c))


Post a Comment

0 Comments