#include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); long long a,b; cin >> a >> b; for(int i = a; i <= b; i++){ if(i % 3 == 0) cout << i << endl; else{ string s = to_string(i); if(s.find('3')!=std::string::npos) cout << i << endl; } } return 0; }