非常简单。

#include<bits/stdc++.h>//全头文件
using namespace std;//命名空间
int main(){//主函数
	cout<<"hello nowcoder"<<endl;//输出
	return 0;
}