A30306. 嫑废话上代码
填空题
容易
知识点
题目描述
嫑废话上代码
题目描述
Linux 之父 Linus Torvalds 的名言是:“Talk is cheap. Show me the code.”(嫑废话,上代码)。本题就请你直接在屏幕上输出这句话。
时间限制:1000 内存限制:65536
输入
本题没有输入。
输出
在一行中输出 `Talk is cheap. Show me the code.`。
样例输入
无
样例输出
Talk is cheap. Show me the code.
参考答案
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"Talk is cheap. Show me the code.";
}
上一题
下一题