Problem9012--A/B Problem

9012: A/B Problem

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

输入两个整数 $a,b$,输出它们的商。

Input

两行,第一行是被除数,第二行是除数。

Output

一行,商的整数部分。

Constraints

$0\le a\le 10^{5000}$,$1\le b\le 10^9$。

Sample 1 Input

10
2

Sample 1 Output

5

Sample 2 Input

8
3

Sample 2 Output

2

HINT

相同题目:洛谷P1480

Source/Category

基础算法 4.6.高精度计算