![](https://tistory1.daumcdn.net/tistory_admin/blogs/image/category/new_ico_1.gif)
https://www.acmicpc.net/problem/2193 #include #define endl "\n"using namespace std;/******** 전역변수 ********/long long num[100];/******** 함 수 ********/int main(void) { /******** C++ INIT ********/ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); /******** 지역변수 ********/ int input; /******** 구 현 ********/ cin >> input; num[1] = 1; num[2] = 1; // 개수는 1, 1, 2, 3, 5, 8 .. 이다 for (int ..