题解 P1601 【A+B Problem(高精)】

Javi

2018-07-29 20:26:01

Solution

这种东西用Python,绝对秒。 代码: ```python a=int(input()) b=int(input()) print(a+b) ```