请编写程序,输出下面的文字:
The fox says, "I am sure that these grapes are sour."
狐狸吃不到葡萄,就说葡萄是酸的。
输入样例
注:无输入
输出样例
The fox says, "I am sure that these grapes are sour."
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
#include<stdio.h>
int main()
{
printf("The fox says, \"I am sure that these grapes are sour.\"\n");
return 0;
}