#include <iostream>
using namespace std;

int main() {
    auto show=[](){
        cout<<"Hello";
    }
    show();
    return 0;
}