Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

i cannot get total coins to be assinged to the eqaution of dime + nickels. \\ cu

ID: 3904555 • Letter: I

Question

i cannot get total coins to be assinged to the eqaution of dime + nickels.

cure https://learn.zybooks.com/zybook/UMTCSCI135DuceSummer 2018/chapter/2/section/1?content_resource_id=26921886 cary > CSCI 135 home > 2.1: Variables and assignments zyBooks catalog Help/ CHALLENGE ACTIVITY 2.1.2: Assigning a sum Write a statement that assigns total_coins with the sum of nickel count and dime count. Sample output for the given program is! 300 1 nickel_count = 100 2 dime_count = 200 3 total_coins = 0 4 print(( nickel_count + dime_count)) 5 (total_coins, total_coins, "is", nickel_count + dime_count)) 6 print(total_coins) lialia 8 print(total_coins) Run X Testing 100 nickels and 200 dimes

Explanation / Answer

nickel_count = 100

dime_count = 200

# this is the statement

total_count = nickel_count + dime_count

print(total_count)

# Output: 30