#include <iostream>
using namespace std;
int main() {
int myAge = 35;
cout << "我今年 " << myAge << " 岁了。";
return 0;
}