8 lines
105 B
C++

#include<iostream>
int main(int,char **)
{
std::cout<<"hello,world!"<<std::endl;
return 0;
}