https://www.acmicpc.net/problem/24416 #include #define endl "\n"using namespace std;/******** 전역변수 ********/int fibo[50] = { 0, 1, 1, };int cnt1 = 0, cnt2 = 0;/******** 함 수 ********/int fibonacci(int n) { if (n == 1 || n == 2) { cnt1++; return 1; } else return fibonacci(n - 1) + fibonacci(n - 2);}int main(void) { /******** C++ INIT ********/ ios::sync_with_stdio(false); cin.tie(NULL); cout...