mirror of
https://github.com/EDeev/web-dev.git
synced 2026-06-15 19:11:12 +03:00
7 lines
123 B
Python
7 lines
123 B
Python
a = int(input())
|
|
b = int(input())
|
|
if b == 0:
|
|
print("Error: Division by zero")
|
|
else:
|
|
print(a // b)
|
|
print(a / b)
|