Sum of two number with user interface in Python
View All Python Programs Source Code n1=int(input(“Enter 1 Number : “))n2=int(input(“Enter 2 Number : “))print(“Sum of n1 & n2 : “, n1+n2) Output Enter 1 Number : 45Enter 2 Number : 8 Sum of n1 & n2 : 53 View All Python Programs
Sum of two number with user interface in Python Read More »