1374: 计算余数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:432 Solved:105

Description

计算两个小数$a$和$b$的余数

Input

一行,包含两个小数$a$和$b$,数据以空格隔开。

Output

输出$a$÷$b$的余数。

Sample Input Copy

3 2

Sample Output Copy

1

HINT

1 ≤ $b$ ≤ $a$ ≤ 100

Source/Category