#include using namespace std; typedef long long ll; bool check(string s) { int n = s.size(); for (int i = 0; i < n; ++i) { int cur = s[i] - '0'; if (cur < 0 || cur > 9) { return false; } if (i == 0 && cur == 0 && n > 1) { return false; } } return true; } int main() { string a, b; cin >> a >> b; if (!check(a) || !check(b)) puts("NG"); else puts("OK"); return 0; }