You are viewing a single comment's thread. Return to all comments →
using namespace std;
int main() { int a, b, c, d; cin >> a >> b >> c >> d; int ans = max(max(a,b), max(c,d)); cout << ans << endl; }
Seems like cookies are disabled on this browser, please enable them to open this website
Functions
You are viewing a single comment's thread. Return to all comments →
include
using namespace std;
int main() { int a, b, c, d; cin >> a >> b >> c >> d; int ans = max(max(a,b), max(c,d)); cout << ans << endl; }