7 lines
105 B
Python
7 lines
105 B
Python
#5.1.1
|
|
def f(x,a):
|
|
r = 1
|
|
while r<=a:
|
|
print("Happy birthday"+x)
|
|
r+=1
|
|
f("China",10) |