#include <stdio.h> #include<math.h> int main() { int n = 0; scanf("%d",&n); int square_root =sqrt(n) ; printf("%d",square_root); return 0; }