# Program to count up takings from stall at fete print("Enter the number of 1p, 2p, 10p and 50p coins you have in the till") onepCoins = int(input("Number of 1p coins: ")) twopCoins = int(input("Number of 2p coins: ")) tenpCoins = int(input("Number of 10p coins: ")) fiftypCoins = int(input("Number of 50p coins: ")) # calculate total in £ total = (onepCoins/100 +twopCoins/50 +tenpCoins/10 + fiftypCoins/2) print("Total value of coins = £", total)