Skip to main content

Posts

Showing posts with the label 1. Write a Python program to find maximum between two numbers.

ads1

Python Condition , 1. Write a Python program to find maximum between two numbers.

 1. Write a Python program to find maximum between two numbers. Solution :-  no1 = int(input("Enter the First number :- ")) no2 = int(input("Enter the Second number :- ")) if (no1 > no2):     print("First number is Big :-",no1) else:     print("Second number is Big",no2) Output :-     

ads2