백준 1977 완전제곱수 [c++] #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int temp;//제곱근을 넣을 변수 int m, n;//입력받을 변수 int first;//가장작은 완전제곱수 int count=0; int sum=0;//합계 cin >> m;//변수입력 cin >> n; for (int i = m; i Programming/Baekjoon 2022.01.13