Skip to main content

Python Program for print sum of two numbers

a=int(input('Enter first value')) 
b=int(input('Enter second value')) 
print('Sum of two numbers=',a+b)

Comments

Popular posts from this blog

Artificial Intelligence: An Overview

  Introduction Artificial Intelligence (AI) is a branch of computer science that focuses on creating systems capable of performing tasks that typically require human intelligence. These tasks include learning, reasoning, problem-solving, understanding language, and perceiving the environment.