import sys sys.stdout.write("hello") sys.stdout.write(chr(10)) sys.stdout.write(str(sum(ord(c) for c in "hello"))[0]) sys.stdout.flush()
__import__("sys").stdout.write(bytes.fromhex("68656c6c6f0a35").decode())- import sys
- sys.stdout.write("hello")
- sys.stdout.write(chr(10))
- sys.stdout.write(str(sum(ord(c) for c in "hello"))[0])
- sys.stdout.flush()