fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int a;
  6. scanf("%d",&a);
  7. switch(a){
  8. case 1: printf("あいうえおあいうえお");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5308KB
stdin
1
stdout
あいうえおあいうえお