aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: 5f5419b5268aa6bb9df308d316981670e2c1c6e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

using namespace std;

int main()
{
    cout << "Hello World!" << endl;
    return 0;
}