#include int main(){ int a,b; std::cin >> a >> b; for(int i=a;i<=b;i++){ if( (i%3)==0 || (i/10)==3 || (i%10)==3 ){ std::cout << i << std::endl; } } }