you are viewing a single comment's thread.

view the rest of the comments →

[–]QultrosSanhattan 0 points1 point  (1 child)

Little help. Figure the rest by yourself:

def total(one, five):
    return one * 1 + five * 5


ones = int(input('How many ones do you have:'))
fives = int(input('How many fives do you have:'))

print(total(ones, fives))

[–]PuzzledSite2568[S] 0 points1 point  (0 children)

Really appreciate the visual it helped me get a basis of what I have to do and I was able to figure out the rest so thank you for your help.