fork download
  1. # This is my PYTHON program
  2. import math;
  3. x=3.981;
  4. z=0.512;
  5. e=2.71828; #Math.e
  6. b=float();
  7. b=math.sqrt(math.exp(x-1)/math.sin(z));
  8. print('Result is b=',b);
Success #stdin #stdout 0.01s 7452KB
stdin
0,1
stdout
('Result is b=', 6.342384416662924)