fork download
  1.  
  2. #include<stdio.h>
  3.  
  4. int main() {
  5. int x=10;
  6. int y=26;
  7. int z=x+y;
  8. printf(" x+y = %i", z);
  9. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
 x+y = 36