hacktoberfest-2018/code/hello.cpp
2018-10-08 01:41:45 +05:30

10 lines
95 B
C++

#include<iostream>
using namespace::std;
int main()
{
cout << "hello world";
return 0;
}