SP31 MUL - Fast Multiplication
Python过高精!
此题对于Python来说是个很水很水的题来惹,就像是单纯的c++里不高精的ab一样。
相信大家应该都会写ab(非高精)的吧!话不多说!python特别好QwQ!!
附上代码:
t=int(input())#读入
i=1
while i<=t:#循环
i+=1
s=input().split()#读入a,b
a=int(s[0])
b=int(s[1])
print(a*b)#输出a*b 完美撒花ing

