fork download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5.  
  6. int main(void) {
  7. int s,t;
  8. scanf("%d,%d",&s,&t);
  9. printf("%dと%d",s,t);
  10.  
  11.  
  12.  
  13.  
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5312KB
stdin
2 5
stdout
2と32766