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