#coding:utf-8
#引数あり関数の定義
def greeting(word):
print(" Nice " + word + "!\n")
x = "job"
greeting(x) #関数の呼出し
print("5つの「Nice 〇〇〇〇〇」を言って:")
for i in range(5):
x = input("--------------- Nice ? : ")
greeting(x)
print("ありがとうございました。\n")