#include using namespace std; using ll=long long; #define rep2(i, a, n) for(int i = (a); i < (n); i++) #define rep(i, n) rep2(i,0,n) int main(){ cin.tie(nullptr);ios_base::sync_with_stdio(false); ll n;cin>>n; ++n; string res=""; while(n>0){ --n; res+=char(n%26+'A'); n/=26; } reverse(res.begin(),res.end()); cout<