Computer Science, asked by anushree291207, 3 months ago

write a program to accept two numbers from users input and print the greater of two numbers​

Answers

Answered by valeriy69
0

nums = input("enter 2 nums: ").split()

ints = [int(num) for num in nums]

print(f"min: {min(ints)}\nmax: {max(ints)}")

\small\mathsf\color{lightblue}useful?\: \color{white}\mapsto\: \color{gold}brainliest

Similar questions