Write a statement that assigns total_coins with the sum of nickel_count and dime_count. Sample output for 100 nickels and 200 dimes is: 300
total_coins = 0
nickel_count = int(input())dime_count = int(input())
''' Your solution goes here '''
print(total_coins)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here