Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 305 Bytes

File metadata and controls

10 lines (7 loc) · 305 Bytes

hello

https://open.kattis.com/problems/hello

Hello is a very simple problem. It's usually the first program that someone implements when learning how to program, simply print out `Hello World!".

This can be done in various ways. In c++, one of the popular ways is:

cout << "Hello World!";