Advertisement
T-D-K

Untitled

Apr 26th, 2018
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. //p3
  2. import math;
  3. n = int(input())
  4. s = 1
  5. for i in range(1, n + 1):
  6.     s = s * math.sin(i * 2)
  7. print(s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement