hh

yzd13 2023-06-18 17:01:55 19

#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if (a>b){ if(a>c) cout<<a; else cout<<c; } else if(b>c) cout<<b; else cout<<c; return 0; }

{{ vote && vote.total.up }}