1545: 高精度数除以低精度数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:25 Solved:33

Description

高精度数除以低精度数

Input

x是主一个高精度数,不超过200位。
y是int型变量。不超过1000000000

Output

x除以y的商,可能 是高精度数。去掉前导0。
余数

Sample Input Copy

365
12

Sample Output Copy

30
5

Source/Category