fork download
#include <stdio.h>

int main() {
  double number = 0;
  
  while(scanf("%lf ", &number) == 1) {
    printf("%f\n", number);      
  }

  return 0;
}
Success #stdin #stdout 0.02s 1724KB
stdin
6.45 3.88 5.91
stdout
6.450000
3.880000
5.910000