Ответ: a = int(input(‘Input a ‘))b = int(input(‘Input b ‘))c = int(input(‘Input c ‘))if a == c and a == c and b == c:    s = 3elif a != b and a != c and b != c:    s = 0else:    s = 2print(s)

Ответ: Держи:a = input(«a:»)b = input(«b:»)c = input(«c:»)if (a == b) and (a == c) and (b == c): print(3)elif (a == b) or (a == c) or (b == c): print(2)else: print(0) input()…Если не сложно нажми «Спасибо» 😉