You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x = int(input('Введите минимальную сумму инвестиций:'))
maik = int(input('Введите количество денег Майкла:'))
ivan = int(input('Введите количество денег Ивана:'))
duble = maik + ivan
if duble < x:
print('0')
elif duble > x:
if maik > x < ivan:
print('2')
elif maik > x > ivan:
print('Maik')
elif maik < x < ivan:
print('Ivan')
else:
print('1')
The text was updated successfully, but these errors were encountered:
x = int(input('Введите минимальную сумму инвестиций:'))
maik = int(input('Введите количество денег Майкла:'))
ivan = int(input('Введите количество денег Ивана:'))
duble = maik + ivan
if duble < x:
print('0')
elif duble > x:
if maik > x < ivan:
print('2')
elif maik > x > ivan:
print('Maik')
elif maik < x < ivan:
print('Ivan')
else:
print('1')
The text was updated successfully, but these errors were encountered: