// C++ Program to find sum of Fibonacci numbers in // O(Log n) time. #include using namespace std; const long long MAX = LLONG_MAX; // Driver program to test above function int main() { long long ans = 0; int A,B,a,b; cin>>A>>B>>a>>b; for(ans=0; ans