Input
Output
#include<stdio.h> void main(){ int a=10,b=15; if(a>b) { printf("Print the value of a %d",a); } else{ printf("Print the value of b %d",b); } }