fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a,b,sum;
  5. a = 1234;b = 456;
  6. sum = a + b;
  7. printf("sum is %d\n",sum);
  8. // your code goes here
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
sum is 1690