#include <iostream> using namespace std; int main() { int a = 12; int b = 5; cout << "Sum of the numbers is: " << (a + b); return 0; }