Files
Learn/day3/条件控制.py
2025-07-03 21:46:54 +08:00

6 lines
99 B
Python

a = input("").split()
for i in a:
if i.isdigit():
print(i*2)
else:
print(i)