Time limit: 1 second
Memory limit: 128 megabytes
----------
Write a program that calculates the value of $Base^{exp}$ without using loops, but by employing recursive calls. This program receives two values, `Base` and `exp`, as input, obtains the result after passing these two to a function named `myPow` within the `main` body, and displays the result up to three decimal places.
# Input
$Base$ is given on the first line and $exp$ on the next line.
`Base` is of type `long double` and `exp` is of type `unsigned int`.
# Output
Print the result with three decimal places of precision.
It is guaranteed that the answer will fit within a `long double`.
# Example
## Sample Input 1
```
1
100
```
## Sample Output 1
```
1.000
```
## Sample Input 2
```
2.1
10
```
## Sample Output 2
```
1667.988
```