fork download
  1. #This is my PYTHON program
  2. import math;
  3. u=float();
  4. v=float();
  5. b=float();
  6. print("Please enter value for u,v\n");
  7. u=float(input());
  8. v=float(input());
  9. b=math.sqrt(math.pow((math.sin(math.atan(u))),2)+math.cos(v));
  10. print("Result is b=",b);
  11.  
  12.  
Success #stdin #stdout 0.08s 14328KB
stdin
10.05
0.35
stdout
Please enter value for u,v

Result is b= 1.3890892813512952