fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. bool doixung(int a[], int n) {
  4. int l = 0;
  5. int r = n - 1;
  6. while (l <= r) {
  7. if (a[l] != a[r]) {
  8. return false;
  9. }
  10. l++; r--;
  11. }
  12. return true;
  13. }
  14.  
  15. int main()
  16. {
  17. int n;
  18. cin>>n;
  19. int a[n];
  20. for(int i=0;i <n;i++){
  21. cin>>a[i];
  22. }
  23. if(doixung(a,n)){
  24. if(a[0]<a[1]) cout<<"Loi";
  25. else cout<<"Lom";
  26. }
  27. else cout<<"Vo danh";
  28. return 0;
  29. }
  30.  
Success #stdin #stdout 0s 5284KB
stdin
5 
5 4 3 4 5
stdout
Lom