#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,temp; cin>>a>>b>>c; //排序 if(a>b) { temp=a; a=b; b=temp; } if(b>c) { temp=b; b=c; c=temp; } if(a>b) { temp=a; a=b; b=temp; } if(c-1==b && b-1==a) cout<<"TRUE"; else cout<<"FALSE"; return 0; }
Using your lizikid universal account