102830: [Atcoder]ABC283 A - Power

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

Given integers $A$ and $B$, print the value $A^B$.

Constraints

  • $1 \leq A, B \leq 9$
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

$A$ $B$

Output

Print the answer.


Sample Input 1

4 3

Sample Output 1

64

$4^3 = 64$, so $64$ should be printed.


Sample Input 2

5 5

Sample Output 2

3125

Sample Input 3

8 1

Sample Output 3

8

Input

题意翻译

输出 $a^b$。

Output

得分:100分

问题描述

给定整数$A$和$B$,输出$A^B$的值。

约束条件

  • $1 \leq A, B \leq 9$
  • 输入中的所有值均为整数。

输入

从标准输入按照以下格式获取输入:

$A$ $B$

输出

输出答案。


样例输入1

4 3

样例输出1

64

$4^3 = 64$,所以应该输出$64$。


样例输入2

5 5

样例输出2

3125

样例输入3

8 1

样例输出3

8

加入题单

算法标签: