Ответ:a = int(input())
b = int(input())
if a > b:
print(a)
elif a < b:
if b > 0:
print(b)
elif b < 0:
print(0)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:a = int(input())
b = int(input())
if a > b:
print(a)
elif a < b:
if b > 0:
print(b)
elif b < 0:
print(0)