How do i find the smallest number between two numbers in python?

Python Program to get two numbers num1 and num2 and find the smallest one among num1 and num2.

Sample Input 1:

5 6

Sample Output 1:

5

Program or Solution

				
			
					
num1=int[input["Enter your first number:"]]
num2=int[input["Enter your second number: "]]
if[num1

Chủ Đề