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