#include #define rep(i,a,b) for(int i=a;i<(b);++i) #define erep(i,a,b) for(int i=a;i<=(int)(b);++i) #define per(i,a,b) for(int i=(a);i>(b);--i) #define eper(i,a,b) for(int i=(a);i>=b;--i) #define pb push_back #define mp make_pair #define INF (1<<31)-1 #define MOD 1000000007 #define all(x) (x).begin(),(x).end() #define vii vector #define vll vector using namespace std; typedef long long ll; typedef pair Pii; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> x >> y; if (abs(x) == abs(y) || x == 0 || y == 0) { int ans = 0; while (x != y) { if (x < y) { swap(x, y); ans++; } else { x = x + y; y = x - y; ans++; } } cout << ans << endl; } else { cout << -1 << endl; } return 0; }