Advertisement
GamerSK

Zenit - syr

Oct 18th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.20 KB | None | 0 0
  1. program syr;
  2. uses sysutils;
  3. type desat=0..10000;
  4.      percento=0..100;
  5. var n:desat;
  6.     k:percento;
  7.     x:double;
  8. begin
  9.   readln(n,k);
  10.   x:=(n*k)/(100-k);
  11.   writeln(n+x:0:8);
  12.   readln;
  13. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement