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