#include using namespace std; bool isThree(int n) { if (n % 3 == 0) { return true; } while (n > 0) { if (n % 10 == 3) { return true; } n = n / 10; } return false; } int main() { int A; int B; for (;;) { cin >> A >> B; if (B