史蒂夫·乔布斯说:“领袖和跟风者的区别在于创新。”
输入样例
注:无输入。
输出样例
Steven Jobs said, "Innovation distinguishes between a leader and a follower."
#include<stdio.h>
int main()
{
printf("Steven Jobs said, \"Innovation distinguishes between a leader and a follower.\"");
return 0;
}
#include<stdio.h>
int main()
{
char a='"';
printf("Steven Jobs said, %cInnovation distinguishes between a leader and a follower.%c",a,a);
return 0;
}