#include <stdio.h>


// Please guess the output of the following codes

int main(){
    int i=5,j=3;
    if (i<4) printf('Need more experience ...\n');
    else {
         printf("Yes, you have it !\n");
         if (j<=3) printf("But, I would prefer better ones.\n");
         else printf("Superb !\n");
         printf("Congratulations !\n");
    }        
    printf("Thank you for using this program !\n");

    int pause;
    scanf("%d",&pause);
    return 0;
}

