JB
Size: a a a
JB
VA
print(
input("one"),
input("two"),
input("three")
)
ᅠ
D
print(
input("one"),
input("two"),
input("three")
)
VA
D
VA
ф[
D
D
VA
from itertools import repeat
print('one {}, two {}, three {}'.format(*[n for n in repeat(input(), 3)]))
VA
VA
ᅠ
from itertools import repeat
print('one {}, two {}, three {}'.format(*[n for n in repeat(input(), 3)]))
py3
from itertools import repeat
print('one {}, two {}, three {}'.format(*[n for n in repeat(input(), 3)]))
1
one 1, two 1, three 1
VA
ᅠ