fork download
  1. #include<stdio.h>
  2. #include<cs50.h>
  3. int main(void){
  4. int x=22;
  5. int z=21;
  6. printf("%d\n",x+z);
  7. printf("%d\n",x-z);
  8. printf("%d\n",x/z);
  9. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
43
1
1