Question problem

num1, num2, num3 = map(int, input().split())

Finding the largest number

largest = max(num1, num2, num3)

Printing the result

print(largest)