#include using namespace std; bool check(int v){ if(v % 3 == 0){ return true; } while(v > 0){ if (v % 10 == 3) return true; v /= 10; } return false; } int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); int A, B; cin >> A >> B; for(int i=A;i