#include<bits/stdc++.h> using namespace std; int n,m; int main(){ cin>>n>>m; for(n;n<=m;n++){ cout<<char(n+('a'-1))<<" "; } return 0; }