fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int N, N2;
  6. cin >> N;
  7. N2 = N;
  8. if(N2 !=N){
  9. cout << "NO";
  10. }else{
  11. cout << "YES";
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 5316KB
stdin
2323
stdout
YES