fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a,b,c;
  5. scanf("%d#%d#%d", &a, &b, &c);
  6. printf("%d %d %d", a, b, c);
  7. return 0;
  8. }
Success #stdin #stdout 0.02s 1680KB
stdin
12#345#6
stdout
12 345 6