while True: try: a,b = input().split() s = 0 for i in a: for j in b: s = s+int(i)*int(j) print(s) except: break
暂无评论,快来抢首评~
相关推荐