E.cpp 204 B

123456789101112131415
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. int Max = INT_MIN;
  5. for (int i = 0; i < 10; i++) {
  6. int t;
  7. cin >> t;
  8. Max = max(t, Max);
  9. }
  10. cout << Max << endl;
  11. return 0;
  12. }