#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; while(n<=m){ if(n%2==1)cout<<n<<endl; n++; } return 0; }