PROGRAMMING:Wine loading (error correction version)*
It is known that the bottle capacity is $$p $$l, and there are currently $$t $$l wine. At least $$n $$bottles are needed to hold these wine. Please write a program, input $$p $$and $$t $$, calculate and output $$n $.
####Input format
>$$p $$and $$t$$
####Output format
> $$n$$
####Sample input 1
```in
0.85 6.3
```
####Sample output 1
```out
eight
```
####Sample input 2
```in
0.41 2.87
```
####Sample output 2
```out
seven
```
---
Tip: pay attention to the error of real number.
answer:If there is no answer, please comment
####Input format
>$$p $$and $$t$$
####Output format
> $$n$$
####Sample input 1
```in
0.85 6.3
```
####Sample output 1
```out
eight
```
####Sample input 2
```in
0.41 2.87
```
####Sample output 2
```out
seven
```
---
Tip: pay attention to the error of real number.
answer:If there is no answer, please comment