Problem F: 买文具

Problem F: 买文具

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

Description

老师给小周周一个任务,到文具店里买尽量多的签字笔。
已知一只签字笔的价格是 $1$ 元 $9$ 角,而班主任给小玉的钱是 $a$ 元 $b$ 角,小周周想知道,最多能买多少只签字笔呢。

Input

输入只有一行两个整数,分别表示 $a\ (0 \leq a \leq 10^4)$ 和 $b\ (0 \leq b \leq 9)$。

Output

输出一行一个整数,表示小周周最多能买多少只签字笔。

Sample 1 Input

10 3

Sample 1 Output

5

Sample 2 Input

1 8

Sample 2 Output

0

Sample 3 Input

2 9

Sample 3 Output

1