Skip to main content

Posts

Showing posts with the label #Python basic

ads1

Python Basic , 1. Write a Python program to enter two numbers and find their sum.

 1. Write a Python program to enter two numbers and find their sum. Sol :-  no1 = int(input("Enter the First number :-")) no2 = int(input("Enter the Second number :-")) add = no1 + no2 print("The Sum of two number is :-",add) Output :-        

ads2