a = int(input())
b = int(input())
c = int(input())
S = a+b+c # Сумма
P = a*b*c # Произведение
print(S%10 + P%10) # ...%10 - остаток от деления на 10, всегда равен последней цифре числа.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input())
b = int(input())
c = int(input())
S = a+b+c # Сумма
P = a*b*c # Произведение
print(S%10 + P%10) # ...%10 - остаток от деления на 10, всегда равен последней цифре числа.