fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a,b,result;
  5. printf("Enter the two number");
  6. scanf("%d%d,&a,&b");
  7. result=a-b;
  8. printf("subtraction=%d",result);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
Enter the two numbersubtraction=0