9 lines
192 B
C++
9 lines
192 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
#define endl '\n'
|
|
int main() {
|
|
// 加快读入
|
|
ios::sync_with_stdio(false), cin.tie(0);
|
|
cout << "aaa" << endl;
|
|
return 0;
|
|
} |