Write a program in pathan to store two numbers in variables and display result
Answers
Answered by
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
0
Answer:
answer
A = 5
B = 6
C = A + B
print (C)
Similar questions
English,
1 month ago
Physics,
1 month ago
Social Sciences,
2 months ago
Science,
2 months ago
Physics,
10 months ago