24,860
社区成员




#include "iostream"
using namespace std;
int main() {
unsigned char c = -1;
char d = 'a';
cout << c << d << endl;
//printf("%d %c", c, d);
return 0;
}
#include "iostream"
using namespace std;
int main() {
//unsigned char c = -1;
char d[20];
cin >> d;
cout << d << d;
//printf("%d %c", c, d);
return 0;
}