#include <stdio.h>
#include<math.h>
int main() {
  int a=2,b=3;

  printf("%d",pow(a,b));
}