/in/foo.cc: In function 'int main()':
/in/foo.cc:7:6: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(a>b>c){
~^~
/in/foo.cc:10:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else if(a>c>b){
~^~
/in/foo.cc:13:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else if(b>a>c){
~^~
/in/foo.cc:16:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else if(b>c>a){
~^~
/in/foo.cc:19:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else if(c>a>b){
~^~
/in/foo.cc:22:11: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
else if(c>b>a){
~^~
/in/foo.cc:25:15: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
else if(a=b=c){
^