Calculate Power

Easy

📝 Description

Calculate the power of a number

Input Format

Two space-separated integers (base and exponent)

Output Format

Result of base raised to the exponent

Constraints

-100 ≤ base ≤ 100, 0 ≤ exponent ≤ 10

🔍 Sample Input

2 3
            

✅ Sample Output

8
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run