Recently Updated
Hello World!
Challenge
Use the programming interface to complete this task. Print the line Hello, EasyCTF! to a file called hello-world.out. For this problem and for future problems, make sure your program ends with a newline. Good luck!
Solution
1
open("hello-world.out","w").write("Hello, EasyCTF!\n")
Flag
easyctf{welc0me_two_easyCtf}