12923 - Exponentiation   

Description

Given two integers N, e. Please write a C program to calculate Ne.

Input

Two integers N(base number), e(exponent).

Note:

  1. 32,767 >= N >= -32,768
  2. e >= 0
  3. 32,767 >= Ne >= -32,768

Output

Output should follow below format:

M

Note:

  1. Need to have a return value('\n') at the end of your string.

Sample Input  Download

Sample Output  Download

Tags




Discuss