Advertisement
PlotnikovPhilipp

Untitled

Sep 25th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. import math
  3. n=int(input())
  4. if n == 1: print(1)
  5. else:
  6. R= 1/(math.sin(math.pi/n))
  7. print (int(R+1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement