#include <stdio.h>

int foo() {
  int x = 13;
  int y = 14;
  return x + y;
}

int main() {
  printf("%d\n", foo());
  return -1;
}