#include <stdio.h>

int main(void) {
	// your code goes here
	char c;
	scanf("%c", &c);
	switch(c) {
		case 'c':
			printf("One\n");
		case 'c':
			printf("Two\n");
	}
	return 0;
}
