#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; #define chmin(x,y) x = min(x,y) int main(){ cin.tie(0); ios::sync_with_stdio(0); ll A,B; cin >> A >> B; auto f = [&](ll n){ bool ok = false; while(n > 0){ if(n % 10 == 3) ok = true; n /= 10; } return ok; }; for(int i=A;i<=B;i++){ if(i % 3 == 0){ cout << i << '\n'; continue; } if(f(i)) cout << i << '\n'; } }