#include using namespace std ; int main() { int num1 ; int num2 ; //cout << "Enter the first integer:" ; printf( "Enter the first integer:" ) ; scanf( "%d" , &num1 ) ; //cin >> num1 ; cout << "Enter the second integer:" ; cin >> num2 ; cout << "The sum of " << num1 << " and " << num2 << " is:" << ( num1+num2) << endl ; return 0 ; }