CJCoding With Joseph

Power of Two Integers

Read a base and an exponent (both non-negative integers) from input and print the base raised to that exponent. Compute it with a loop by repeated multiplication (do not use pow). For example, if the input is:

2 5

print:

32

End the line with a newline.

Expected Output:

32
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
2 5
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.