#include #define EM 1000000 using namespace std; using LL = long long; using P = pair; LL LINF = 1e18; int INF = 1e9; LL mod = 1e9+7; using vint = vector; using vLL = vector; using vvint = vector>; using vvLL = vector>; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main(){ LL N; cin >> N; vector alp; N++; while(N > 0){ N--; alp.push_back('A'+N%26); N /= 26; } reverse(alp.begin(), alp.end()); for(auto c : alp){ cout << c; } cout << endl; }