pythonCalculate A * B. 输入 Each line will contain two integers A and B. Process to end of file. Note: the length of each integer will not exceed 50000.
时间: 2023-02-12 19:12:47 浏览: 105
Automatic_Fingerprint_Authentication_System.zip_Cropping_64.m_ST
可以使用 Python 的内置函数 int() 将输入的字符串转换为整数,然后使用乘法运算符 * 计算 A * B。
示例代码如下:
```
while True:
try:
a, b = map(int, input().split())
print(a * b)
except:
break
```
这段代码会不断读取输入的两个整数并相乘,直到输入结束。
阅读全文