This commit is contained in:
2023-07-02 23:37:22 +02:00
parent 793a47e1c2
commit 575278be6e
+4
View File
@@ -0,0 +1,4 @@
from math import radians, sin, ceil
h, v = map(int, input().split())
print(ceil(h / sin(radians(v))))