#include <iostream> using namespace std; int main(){ int n,m,i; cin>>n>>m; for(i=n;i<=m;i++) cout<<char(96+i)<<" "; return 0; }