fork download
  1. #include <stdio.h>
  2. int main(){
  3. int a;
  4. scanf("%d",&a);
  5. switch (a%2){
  6. case 0:printf("gu");break;
  7. case 1:printf("ki");break;
  8. }
  9.  
  10.  
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5324KB
stdin
90
 
stdout
gu