1542. 好朋友

直接输出一行内容即可。

参考程序:

C语言:

#include <stdio.h> int main() { printf("bc gd jl sz"); return 0; }

Python:

print('bc gd jl sz')