题解 P2142 【高精度减法】

rui_er

2018-12-13 18:15:47

Solution

Python 3是个好东西(虽然比赛时不能用) 下面是Python 3代码 ```python print(int(input())-int(input())) ```