Computer Science, asked by shivangbmehta6645, 12 hours ago

Write a program in pathan to store two numbers in variables and display result

Answers

Answered by allysia
5

Language:

Python

Program:

a,b = int(input()), int(input())

print(a,b)

Explanation:

  • int() converted user input form  
  • input() intp integer type number and saves them to the respective variables.
  • print() displays comma seperated values on screen

Input/ Output:

5

4

5 4

Answered by mandaviyadav2014
0

Answer:

answer

A = 5

B = 6

C = A + B

print (C)

Similar questions