#include using namespace std; int main() { int N, M; cin >> N >> M; if(N <= M) { cout << 1 << endl; } else { cout << -1 << endl; } }