4 lines
77 B
Python
4 lines
77 B
Python
name = input()
|
|
age = int(input())
|
|
print(f"Hipp hipp hurra, {name}!\n" * age)
|