#include using namespace std; #define repu(i, begin, end) for (__typeof(begin) i = (begin) - ((begin) > (end)); i != (end) - ((begin) > (end)); i += 1 - 2 * ((begin) > (end))) #define repe(i, begin, end) for (__typeof(begin) i = (begin); i != (end) + 1 - 2 * ((begin) > (end)); i += 1 - 2 * ((begin) > (end))) #define mem(a, x) memset(a, x, sizeof(a)) #define all(a) a.begin(), a.end() #define count_bits(x) __builtin_popcount(x) #define count_bitsll(x) __builtin_popcountll(x) #define least_bits(x) __builtin_ffs(x) #define least_bitsll(x) __builtin_ffsll(x) #define most_bits(x) 32 - __builtin_clz(x) #define most_bitsll(x) 64 - __builtin_clz(x) vector split(const string &s, char c) { vector v; stringstream ss(s); string x; while (getline(ss, x, c)) v.push_back(x); return v; } #define error(args...) { vector _v = split(#args, ','); err(_v.begin(), args); } void err(vector::iterator it) {} template void err(vector::iterator it, T a, Args... args) { cerr << it -> substr((*it)[0] == ' ', it -> length()) << " = " << a << '\n'; err(++it, args...); } typedef long long ll; const int MOD = 1000000007; template inline T tmin(T a, T b) {return (a < b) ? a : b;} template inline T tmax(T a, T b) {return (a > b) ? a : b;} template inline void amax(T &a, T b) {if (b > a) a = b;} template inline void amin(T &a, T b) {if (b < a) a = b;} template inline T tabs(T a) {return (a > 0) ? a : -a;} template T gcd(T a, T b) {while (b != 0) {T c = a; a = b; b = c % b;} return a;} const int N = 500, INF = 1000000000; typedef pair P; const P inf = P(INF, INF); vector fib; P solve(int i, int j, ll x, ll y) { ll det = fib[i] * fib[j + 1] - fib[i + 1] * fib[j]; ll deta = x * fib[j + 1] - y * fib[i + 1]; ll detb = y * fib[i] - x * fib[j]; if (tabs(deta) % tabs(det) != 0) return inf; if (tabs(detb) % tabs(det) != 0) return inf; ll ra = deta / det, rb = detb / det; if (ra > 0 && rb > 0) return P(ra, rb); return inf; } ll extgcd(ll a, ll b, ll &x, ll &y) { ll d = a; if (b != 0) { d = extgcd(b, a % b, y, x); y -= (a / b) * x; } else { x = 1; y = 0; } return d; } int main(int argc, char *argv[]) { ios_base::sync_with_stdio(false); int z[3]; fib.push_back(1); fib.push_back(0); int cnt = 2; while (true) { ll val = fib[cnt - 1] + fib[cnt - 2]; if (val > INF) break; fib.push_back(val); cnt++; } repu(i, 0, 3) cin >> z[i]; sort(z, z + 3); P ans = inf; if (z[0] != z[2]) { repu(i, 0, cnt - 1) repu(j, 0, cnt - 1) { if (i != j) amin(ans, solve(i, j, z[0], z[2])); } if (ans != inf) { bool good = 0; repu(i, 0, cnt) { if (ans.first * fib[i] + ans.second * fib[i + 1] == z[1]) good = 1; } if (good) printf("%lld %lld\n", ans.first, ans.second); else printf("-1\n"); } } else { ll x, y; P ans = inf; amin(ans, P(z[0], 1)); amin(ans, P(1, z[0])); repu(i, 2, cnt - 1) { extgcd(fib[i], fib[i + 1], x, y); x *= z[0]; y *= z[0]; if (x > 0) { ll t = (x - 1) / fib[i + 1]; x -= t * fib[i + 1]; y += t * fib[i]; } else if (y > 0) { ll t = tabs(x) / fib[i + 1] + 1; if (y > t * fib[i]) { x += t * fib[i + 1]; y -= t * fib[i]; } } if (x > 0 && y > 0) amin(ans, P(x, y)); } if (ans != inf) printf("%lld %lld\n", ans.first, ans.second); else printf("-1\n"); } return 0; }