#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char s[100];
cin.getline(s,100);
strcat(s," happy birthday!");
cout<<s<<endl;
//system("pause");
return 0;
}
//这题特别坑人!我在码酷上交了8遍才对!
时间: 2024-10-18 18:49:25