import java.util.*; public class Main { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); //与えられるカード int[] A = new int[5]; for(int i = 0; i < A.length; i++) { A[i] = sc.nextInt(); } //確認した場所を記憶する配列 int[] check = new int[A.length]; //スリーカードか boolean three = false; //ペアか boolean pair = false; //ツーペアか boolean twoPair = false; //先頭から順に役を見つける for(int i = 0; i < A.length; i++) { //チェック済みカードは飛ばす if(check[i] == 1) { continue; } //同じカードの枚数を数える int cnt = 1; check[i] = 1; for(int j = i + 1; j < A.length; j++) { if(check[j] == 1) { continue; } if(A[i] == A[j]) { cnt++; check[j] = 1; } } if(cnt >= 4) { break; } else if(cnt == 3) { three = true; } else if(cnt == 2 && pair) { twoPair = true; } else if(cnt == 2) { pair = true; } } //役判定 String ans; if(three && pair) { ans = "FULL HOUSE"; }else if(three) { ans = "THREE CARD"; } else if(twoPair) { ans = "TWO PAIR"; } else if(pair) { ans = "ONE PAIR"; } else { ans = "NO HAND"; } System.out.println(ans); } }