Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- coins=int(input('How many £1 coins are there to share '))
- people=int(input('How many people to shar with '))
- coinseach=coins//people
- coinsleft=coins % people
- print('There are ',coinseach,' coins each\ncoins left', coinsleft)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement