age_brother = int(input('Введите возраст брата: '))
age_sister = int(input('Введите возраст сестры: '))
if age_brother > age_sister:
print('Стараше Брат. Разница:', age_brother - age_sister)
elif age_sister > age_brother:
print('Стараше Сестра. Разница:', age_sister - age_brother)
else:
print('Брат с Сестрой ровесники', )
age_brother = int(input('Введите возраст брата: '))
age_sister = int(input('Введите возраст сестры: '))
if age_brother > age_sister:
print('Стараше Брат. Разница:', age_brother - age_sister)
elif age_sister > age_brother:
print('Стараше Сестра. Разница:', age_sister - age_brother)
else:
print('Брат с Сестрой ровесники', )