#include <iostream>
using namespace std;

int main() 
{ 
    try  
    { 
        int a=6; 
        cout<<"\nWhat is lesser than five?\n"; 
        if (a>=5) throw a; 
    } 
    catch (int e) 
    { 
        cout<<"\nWrong!\n" << e; 
        return 0; 
    } 
    cout<<"\nCorrect!\n"; 
    return 0; 
} 