def giveChange(money):
x = money // 10
y = (money - (x * 10)) // 5
z = money - (x * 10)-(y * 5)
print('{} = {}*10 + {}*5 + {}*1'.format(money,x,y,z))
def giveChange(money):
x = money // 10
y = (money - (x * 10)) // 5
z = money - (x * 10)-(y * 5)
print('{} = {}*10 + {}*5 + {}*1'.format(money,x,y,z))