#include <iostream>
using namespace std;
//1.单行注释
    //
//2.多行注释
   /*
         main是程序的入口,
      每个程序都必须有一个
   
   */


int main()
{
    //11行在屏幕输出helloword
    cout << "helloword" << endl;   
    system("pause");  //按任意键继续
    return 0;
}