#include #include #include using namespace std; const int MAX = 200000000; const int MAXSTEPS = 10000; short used[MAX] = {false}; int d = 1; vector vals; int nvals = 0; int main() { int start, target; cin >> start >> target; int count = 0; while (count < MAXSTEPS) { count++; if (start < MAX) used[start] = true; for(int i=0; i