fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a,b,c;
  6. scanf("%d",&a);
  7. b=a/10;
  8. c=a%10;
  9. printf("%d\n %d\n",b,c);
  10. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
3276
 6