a = int(input())
b = int(input())
c = int(input())
d = int(input())
print(max(max(a, b), max(c, d)))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input())
b = int(input())
c = int(input())
d = int(input())
print(max(max(a, b), max(c, d)))