51Nod1029 大数除法

Problem

给出2个大整数A,B,计算A / B和A Mod B的结果。

Solution

Code

a=int(input())
b=int(input())
c=a//b
print(c)
print(a-c*b)
posted @ 2019-10-19 18:43  CCWUCMCTS  阅读(141)  评论(0编辑  收藏  举报