fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int p;
  5. int n;
  6. int total;
  7. scanf("%d %d", &p, &n);
  8. total = (p * n) * 1.1;
  9. printf("%.2f\n", total);
  10. return 0;
  11. }
Success #stdin #stdout 0s 5312KB
stdin
5000 10
stdout
0.00