We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9abade2 commit 8ba3ea7Copy full SHA for 8ba3ea7
solutions/beecrowd/1541/1541.py
@@ -0,0 +1,9 @@
1
+import math
2
+import sys
3
+
4
+for line in sys.stdin:
5
+ if line.startswith('0'):
6
+ break
7
8
+ a, b, c = map(int, line.split())
9
+ print(f"{math.floor(math.sqrt((100 * a * b) / c))}")
0 commit comments