a = int(input('Enter 1st number: '))
b = int(input('Enter 2nd number: '))
c = int(input('Enter 2nd number: '))
print(f'Largest number is {max(a, b, c)}')
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input('Enter 1st number: '))
b = int(input('Enter 2nd number: '))
c = int(input('Enter 2nd number: '))
print(f'Largest number is {max(a, b, c)}')