#include <iostream> #include <iomanip> using namespace std; int main() { cout << setbase(16) << 77 << endl; // 4d return 0; }