fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main() {
  5. int a, b;
  6. float c;
  7.  
  8.  
  9. scanf("%d %d %f", &a, &b, &c);
  10. printf("%d %d %.3f\n", a, b, c);
  11. return 0;
  12. }
  13.  
  14.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
22027 -449611712 0.000