fork download
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. using namespace std;
  4. int main()
  5. {
  6. ll x ;
  7. cin >>x ;
  8. if ( x % 2 == 0 ) cout<< " thong minh " ;
  9. else if ( x%2 != 0 ) cout << " may ngu vai ";
  10. return 0;
  11. }
Success #stdin #stdout 0s 5320KB
stdin
2
stdout
 thong minh