fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int x;
  5.  
  6.  
  7. int main(){
  8. cin>>x;
  9. if(x%2==0){
  10. cout<< "genap";
  11. }
  12. if(x%2==1 and x>0 ){
  13. cout<< "ganjil genap";
  14. }
  15.  
  16. }
  17.  
  18.  
  19.  
Success #stdin #stdout 0.01s 5292KB
stdin
9
stdout
ganjil genap