mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-15 19:11:12 +03:00
8 lines
161 B
Python
8 lines
161 B
Python
a = float(input())
|
|
b = float(input())
|
|
if 1 <= a <= 10 ** 10 and 1 <= b <= 10 ** 10:
|
|
print(a + b)
|
|
print(a - b)
|
|
print(a * b)
|
|
else:
|
|
print("Error")
|