summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
blob: 70f43fd59b75fdb1c0d520e62741734c1462d83d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <fstream>
#include <iomanip>


using std::cout;
using std::cin;
using std::endl;
using std::setw;
using std::ios;
using std::ifstream;
using std::ofstream;


int main()
{
    cout << "Hello World!\n";
}