测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

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."; }
上一题 下一题