/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:6: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(a>c>b)
~^~
/in/foo.cc:13:6: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(b>a>c)
~^~
/in/foo.cc:16:6: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(b>c>a)
~^~
/in/foo.cc:19:6: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(c>b>a)
~^~
/in/foo.cc:22:6: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(c>a>b)
~^~