lab.cpp/ex1.cpp

9 lines
101 B
C++
Raw Permalink Normal View History

2016-03-03 18:30:01 +00:00
#include <iostream>
using namespace std;
int main(){
cout << "Hello World!" << endl;
return 0;
}