fork download
  1. #include<stdio.h>
  2. main()
  3. {
  4. int a=1;
  5. int b=2;
  6. int c=3;
  7. int i,j,k;
  8. i = -a;
  9. j = 13/5;
  10. k = c%b;
  11. printf("%d\n%d\n%d",i,j,k);
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5288KB
stdin
10
stdout
-1
2
1