#include <bits/stdc++.h>
using namespace std;
#define nmax 1000007
#define ll long long
int main()
{
cin.tie(0)->sync_with_stdio(0);
long long a, b, c, d;
cin >> a >> b >> c >> d;
cout << max({a, b, c, d});
}
Đúng 2
Bình luận (0)