#include using namespace std; typedef long long LL; int main() { // 1. 入力情報取得. LL A, B; cin >> A >> B; // 2. 3の倍数 および 3の付く数を出力. for(LL i = 0LL; i <= B - A; i++){ LL ans = A + i; bool ok = false; // 3の倍数のとき. if(ans % 3 == 0) ok = true; // 3の付く数のとき. string s = to_string(ans); if(s.find({'3'}) != string::npos) ok = true; // ok == true なら, 出力. if(ok) cout << ans << endl; } // 3. 後処理. return 0; }