PROGRAMMING:Find the last number of the power
For the given base'm 'and exponent' n ', find the last three digits of the' n 'power of'm'.
###Input format:
Give two integers'm 'and' n 'in one line, separated by spaces` M 'and' n 'are non negative integers not greater than 10000)
###Output format:
In a row, give the last three digits of the * * of the 'n' power of'm ', which are arranged from high to low, with no space in the middle. If there are less than three digits, fill the high with' 0 '.
###Input sample 1:
```in
3 4
```
###Output sample 1:
```out
081
```
###Input sample 2:
```in
70 2
```
###Output sample 2:
```out
nine hundred
```
answer:If there is no answer, please comment
###Input format:
Give two integers'm 'and' n 'in one line, separated by spaces` M 'and' n 'are non negative integers not greater than 10000)
###Output format:
In a row, give the last three digits of the * * of the 'n' power of'm ', which are arranged from high to low, with no space in the middle. If there are less than three digits, fill the high with' 0 '.
###Input sample 1:
```in
3 4
```
###Output sample 1:
```out
081
```
###Input sample 2:
```in
70 2
```
###Output sample 2:
```out
nine hundred
```
answer:If there is no answer, please comment