Верно ли что все числа a b c положительные
A = int(input())b = int(input())c = int(input()) if a > 0 and b > 0 and c > 0:print("Yes")else:print("No")