12345678910
#include <fstream> #include <iostream> int main() { std::ifstream f("./hex"); int a; f>>std::hex>>a; std::cout<<std::hex<<a; return 0; }