Skip to content

Commit d80dcf1

Browse files
authored
Add files via upload
1 parent 8832674 commit d80dcf1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Arithmetic Operators_1.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Task
2+
# Read two integers from STDIN and print three lines where:
3+
4+
# The first line contains the sum of the two numbers.
5+
# The second line contains the difference of the two numbers (first - second).
6+
# The third line contains the product of the two n
7+
8+
if __name__ == '__main__':
9+
a = int(input())
10+
b = int(input())
11+
print(a+b)
12+
print(a-b)
13+
print(a*b)
14+
15+

0 commit comments

Comments
 (0)