5 lines
35 B
Python
5 lines
35 B
Python
|
def prin(*args):
|
||
|
print(args)
|
||
|
|
||
|
|