fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define endl '\n'
  4. #define min(x, y) ((x) < (y)) ? (x) : (y)
  5. #define max(x, y) ((x) > (y)) ? (x) : (y)
  6. #define abs(x) ((x) < 0) ? -(x) : (x)
  7.  
  8. typedef long long int64;
  9. typedef unsigned long long uint64;
  10. typedef unsigned uint;
  11.  
  12. int main() {
  13. ios_base::sync_with_stdio(false);
  14. uint n, h, k, buf;
  15. uint total = 0;
  16. uint current;
  17. vector<uint> potatoes;
  18. bool found, added;
  19.  
  20. cin >> n >> h >> k;
  21.  
  22. for (uint i = 0; i < n; ++i)
  23. {
  24. cin >> buf;
  25. potatoes.push_back(buf);
  26. }
  27.  
  28. cout << "Letf\n";
  29.  
  30. return 0;
  31. }
Success #stdin #stdout 0s 3464KB
stdin
5 6 3
5 4 3 2 1
stdout
Letf