#include<iostream>
#include<string.h>

using namespace std;

int main(){
    int a = 1024;
    string res = to_string(a) + "快乐";
    cout << res;
}