fork download
  1. #include <stdio.h>
  2. int main ( )
  3. {
  4.  
  5. int y;
  6. int z;
  7. int zz;
  8. scanf("%d %d", &y, &z);
  9. zz = y + z;
  10. printf (" %i \n", zz);
  11.  
  12. return (0); /* success */
  13. }
Success #stdin #stdout 0.01s 5316KB
stdin
22 78
stdout
 100