2398 - Hello,World |||
让计算机在第一行输出"Hello,“在第二行输出”World."。请注意字母大小写和标点符号,输出不包括两边的引号。
注意输出第一行的"Hello,“之后要在输出一个换行符,输出第二行的”World."也要输出一个换行符。
Input
本题无输入。
Output
第一行输出Hello,
第二行输出World.
Examples
Input
本题无输入样例
Output
Hello, World.
Solution C
#include<stdio.h> int main(){ printf("Hello,\nWorld."); return 0; }
Solution C++
#include<stdio.h> int main() { printf("Hello,\n"); // 输出..... printf("World.");//succeeded编译成功 return 0; }