Blame view

P79817_en/S002-AC.cc 291 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>

using namespace std;

int main()
{
	int a,b,base;
	while(1)
	{
		cin >> a;
		if(cin.eof())
		{
			return 0;
		}
		cin >> b;
		if(!b)
		{
			cout << 1 << endl;
			continue;
		}
		base = 1;
		for(int i = 1; i < b+1; i++)
		{
			base *= a;
		}
		cout << base << endl;
	}
}