7 lines
82 B
Python
7 lines
82 B
Python
|
from io import StringIO
|
||
|
import sys
|
||
|
|
||
|
sys.stdout = StringIO()
|
||
|
|
||
|
|
||
|
print("hello world")
|