#include <iostream> using namespace std; int main() { int a=123, b=456; int c = a + b; cout << "a+b=" << (a+b) << endl; return 0; }