#include <iostream>

static int x = 0;

char* f()
{
  static char* words[] = {"One", "Two", "Three"};
  return words[(x++) % 3];
}

int main() {
  std::cout << f() << std::endl << f() << std::endl << f();
  return 0;
}