#include<iostream> using namespace std; int main() { int a=0; int b=0; cin>>a>>b; cout<<hex<<a+b; //hex转十六进制,dec转十进制 ...