#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); long long n; cin >> n; n++; string ans; while(n > 0) { n--; ans += (n % 26 + 'A'); n /= 26; } reverse(ans.begin(), ans.end()); cout << ans << endl; return 0; }