You are given two real numbers $a, b$. Print $\frac{a}{b}$ rounded to two decimal places.
### Input
- Two real numbers $a, b$.
### Output
- $\frac{a}{b}$ rounded to two decimal places.
### Constraints
- $(1 \le a, b \le 1000)$.
### Example
Input:
```7.3 2.4```
Output:
```3.04```