Description
會輸出Hello World!了,那換個句子也會吧?
Input
沒有輸入
Output
現在要求你輸出下面紅色的字
Nice to meet you!
Sample Output
Nice to meet you!
Source
零起點學算法
Code
#include<iostream>
using namespace std;
int main()
{
cout<<"Nice to meet you!"<<endl;
}