找到最大的输出其他两个减它即可
#include <bits/stdc++.h>
using namespace std ;
int main ( ) {
int x , y , z ;
while ( cin >> x >> y >> z ) {
int maxn = -1 ;
maxn = max ( maxn , x ) ;
maxn = max ( maxn , y ) ;
maxn = max ( maxn , z ) ;
if ( x == maxn ) { cout << ( y + z ) - maxn << endl ; continue ; }
if ( y == maxn ) { cout << ( x + z ) - maxn << endl ; continue ; }
if ( z == maxn ) { cout << ( y + x ) - maxn << endl ; continue ; }
}
return 0 ;
}