fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. double f1,f2;
  5. scanf("%lf",&f1);
  6. scanf("%lf",&f2);
  7. f1=f1-f2;
  8. f2=f1+f2;
  9. f1=f2-f1;
  10. printf("%lf\n",f1);
  11. printf("%lf",f2);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 10304KB
stdin
56
133333333
stdout
133333333.000000
56.000000