func int main() {
  if (1>2) print("first");
  else if (3>4) print("second");
  else print("final");
  return 0;
}
