1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-13 23:22:49 +02:00

8 lines
146 B
Python

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