Online Compiler Python

# Write your code here print("Hello world!") print("I suck at codeing")
This code prints two messages to the screen. The first line prints "Hello world!" and the second prints "I suck at codeing". The program runs top to bottom, so the messages appear in that order.

- The second print statement has a typo in the word "codeing" — it should be "coding" if you want correct spelling, but Python will still run it as is.
- Notice that each print statement is on its own line. If you want both messages on the same line, you would need to combine them, but that is not required here.