4 lines
84 B
Python
Executable File
4 lines
84 B
Python
Executable File
class Echo:
|
|
def __init__(self, *args, **kwargs):
|
|
print(*args, **kwargs)
|