HTMLify
arithmetic_operation.py
Views: 459 | Author: djdj
1 2 3 4 5 | a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b) |
1 2 3 4 5 | a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b) |