#include using namespace std; #define rep(i,n) for(int i=0;i<(n);++i) #define loop for(;;) #define trace(var) cerr<<">>> "<<#var<<" = "< inline ostream& operator<<(ostream&os, pair p) { return os << '(' << p.first << ", " << p.second << ')'; } template inline ostream& operator<<(ostream&os, tuple t) { return os << '(' << get<0>(t) << ", " << get<1>(t) << ", " << get<2>(t) << ')'; } template inline ostream& operator<<(ostream&os, vector v) { if (v.size() == 0) { return os << "(empty)"; } os << v[0]; for (int i=1, len=v.size(); i inline istream& operator>>(istream&is, vector&v) { rep (i, v.size()) is >> v[i]; return is; } int dx[] = { -1, 0, 1, 0 }; int dy[] = { 0, -1, 0, 1 }; using vi = vector; using vvi = vector; int main() { cin.tie(0); ios::sync_with_stdio(0); cout.setf(ios::fixed); cout.precision(10); random_device dev; mt19937 rand(dev()); Integer a, b; cin >> a >> b; for (; a <= b; ++a) { bool t = a % 3 == 0; if (not t) { Integer c = a; while (c > 0) { if (c % 10 == 3) { t = true; break; } c /= 10; } } if (t) { cout << a << endl; } } return 0; }