fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a;
  7. cin>>a;
  8. if (a%2==0)
  9. {
  10. cout<<"MR RAHAT SHAH ";
  11. }
  12. if(a%2==1)
  13. {
  14. cout<<"MR ABDULLAH JAN";
  15. }
  16. return 0;
  17. }
Success #stdin #stdout 0s 4320KB
stdin
101
stdout
MR ABDULLAH JAN