#include int main(){ register int x = 12345; register int y = 54321; register int r = x+y; printf("x+y = %d", r); return 0; }