Advertisement
noshin98

uva 10286

Jul 10th, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     double a,b;
  5.     while(scanf("%lf",&a)==1)
  6.     {
  7.         b=1.0673956817111818692592637626711*a;
  8.         printf("%.10lf\n",b);
  9.     }
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement