본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]2417번 정수 제곱근

by 현장 2021. 8. 30.

-코드

from math import sqrt, ceil
n = int(input())
print(ceil(sqrt(n)))