Input
Output
#include <iostream> using namespace std; int main(){ int a=10,b=15; if(a > b) { cout << "Print the value of a "<< a << endl; } else{ cout << "Print the value of b "<< b << endl; } return 0; }