#include <stdio.h>

void foo() {
  printf("Set a breakpoint here.\n");
}

int main() {
  foo();
  return 0;
}
