출처

  • 2016 Sogang Programming Contest Master B번

문제

링크

풀이

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