#include <iostream>using namespace std;int main(){ int n,k; while(cin>>n>>k){ if(k!=0) n=n%k; if(n==0) cout<<"Ok!\n"; else cout<<"Impossib1e!\n"; }}