#abc283a. A - Power

A - Power

Score : 100100 points

问题描述

给定整数 AABB,输出 AABB 次幂的值。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

Given integers AA and BB, print the value ABA^B.

Constraints

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

Input

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

AA BB

Output

Print the answer.

Sample Input 1

4 3

Sample Output 1

64

43=644^3 = 64, so 6464 should be printed.

Sample Input 2

5 5

Sample Output 2

3125

Sample Input 3

8 1

Sample Output 3

8

update @ 2024/3/10 11:51:24