Программа на Python:
Первая:
var, var1, var2 = int(input('[Программа] Привет! Давай свои 3 числа, я определю из них максимальное! \n[Вы] ')), int(input('[Вы] ')), int(input('[Вы] '))
print('[Программа] Вот твоё максимальное число: ', max(var, var1, var2), ', друг!', sep='')
Вторая:
a, b, c = int(input('[Программа] Привет! Давай свои 3 значения сторон ▲, я определю, существует ли он или нет! \n[Вы] a = ')), int(input('[Вы] b = ')), int(input('[Вы] c = '))
if a > b + c or b > a + c or c > a + b: print('[Программа] Друг, такого ▲ не существует!')
else: print('[Программа] Всё в порядке, такой ▲ существует!')
На счёт пробелов не беспокойтесь, их тут нет.
Объяснение:
No or not?
Grammar > Easily confused words > No or not?
из English Grammar Today
No and not are the two most common words we use to indicate negation. We use no before a noun phrase:
There’s no address on the envelope.
[parent to child]
No biscuits before dinner!
No decisions have been made.
We use not with any other phrase or clause:
It’s not often that you stop and think about the way you breathe.
Not suitable for children under 15.
Not surprisingly, it was a tense match but eventually the more experienced Australians won.
A:
Do you go cycling all year round?
B:
Not in the winter.