mhdew

B

Nov 29th, 2018
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     double n, k;
  6.     scanf("%lf %lf", &n,&k);
  7.  
  8.     double ans=(n*k)/100.0;
  9.  
  10.     printf("%0.2lf\n", ans);
  11.    
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment