1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/templates/solution/python/solution.py

9 lines
170 B
Python
Raw Normal View History

from typing import List
import sys
input_values: List[str] = []
for value in sys.stdin:
input_values.append(value.rstrip('\n'))
print(f'Hello, {input_values[0]}!')