6 lines
99 B
Python
6 lines
99 B
Python
|
|
a = input("").split()
|
||
|
|
for i in a:
|
||
|
|
if i.isdigit():
|
||
|
|
print(i*2)
|
||
|
|
else:
|
||
|
|
print(i)
|