#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; if(m >= n) { cout << 1 << endl; } else { if(n % 2) { cout << -1 << endl; } else { if(n / 2 > m) { cout << -1 << endl; } else { cout << n / 2 << endl; } } } return 0; }