Online Compiler Nasm

# Write your code here n = input() print("Hello world!", n)
The code reads a value from the user and prints "Hello world!" followed by that value. It does not convert the input to a number, so `n` remains a string.

- The problem likely expects you to read an integer, not just any input. Consider using `int()` to convert the input to a number.
- The output format may need to match exactly what the task asks for, such as printing only the number or a specific message without extra text.