Ещё немного

This commit is contained in:
2017-10-05 13:16:28 +03:00
parent ff9737c444
commit 507bc27558
7 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import sys, math
ID = "quadros"
sys.stdin = open(ID + ".in", "r")
sys.stdout = open(ID + ".out", "w")
n = int(input())
n = n // 2
n = int(math.sqrt(n))
print(n)