#include using namespace std; bool bChk( const int iNum ) { int i; if( iNum % 3 == 0 ) return true; i = iNum; while( i > 0 ) { if( i % 10 == 3 ) return true; i /= 10; } return false; } int main() { int i; int A; int B; cin >> A; cin >> B; for( i = A; i <= B; i++ ) { if( bChk( i ) ) cout << i << endl; } return 0; }