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