include "primitives.alh" Integer function power(base : Integer, exponent : Integer): if (exponent == 0): return 1 else: return base * power(base, exponent - 1) Void function main(): while (True): output(power(input(), input()))