fork download
  1. #include <stdio.h>
  2.  
  3. int main( void )
  4. {
  5. double x;
  6. scanf( "%lf", &x );
  7.  
  8. x = x + 10;
  9.  
  10. printf( "%f\n", x );
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2160KB
stdin
3.3
stdout
13.300000