출처
- 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;
}출처
- 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;
}