#include using namespace std; using Int = long long; //INSERT ABOVE HERE signed main(){ vector a(5); for(Int i=0;i<5;i++) cin>>a[i]; map c; for(Int i=0;i<5;i++) c[a[i]]++; Int c3=0,c2=0; for(auto p:c) if(p.second==3) c3++; for(auto p:c) if(p.second==2) c2++; if(c3==1&&c2==1){ cout<<"FULL HOUSE"<