题目:
Linux 之父 Linus Torvalds 的名言是:“Talk is cheap. Show me the code.”(嫑废话,上代码)。本题就请你直接在屏幕上输出这句话。
输入格式:
本题没有输入。
输出格式:
在一行中输出 Talk is cheap. Show me the code.
。
输入样例:
无
输出样例:
Talk is cheap. Show me the code.
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
栈限制
8192 KB
题意解析:
输出"Talk is cheap. Show me the code.
"即可
AC代码:
#include<bits/stdc++.h>
using namespace std;
int main(){
cout << "Talk is cheap. Show me the code.";
return 0;
}