fork download
  1. #include <cstdio>
  2.  
  3. int main() {
  4. int bil1, bil3;
  5. double bil2;
  6.  
  7. scanf("%d %lf %d", &bil1, &bil2, &bil3);
  8. printf("%d\n%.2f\n%d\n", bil1, bil2, bil3);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5280KB
stdin
10
12.1235
30
stdout
10
12.12
30