EasyCTF_2018: Hello, World!

Category: Intro Points: 10 Description:

Using your favorite language of choice, print Hello, world! to the output. For Python, consider the print function. For Java, consider System.out.println. For CXX, consider including stdio.h and using the printf function.

Write-up

A really braindead one, the solution is just,

print("Hello, world!")

Therefore, there is no flag.