a = int(input('Введите a: '))
b = int(input('Введите b: '))
c = int(input('Введите c: '))
d = int(input('Введите d: '))
print((a + 2 * b) / (3 * a - b * d))
print((pow(2, 4) + 5 * a * c) / (3 * pow(a, 2) - 5 * b))
print(12 // 3)
print(13 % 2)
print(pow(3, 3))
print(6 * 2)
print(16 / 4)
a = int(input('Введите a: '))
b = int(input('Введите b: '))
c = int(input('Введите c: '))
d = int(input('Введите d: '))
print((a + 2 * b) / (3 * a - b * d))
print((pow(2, 4) + 5 * a * c) / (3 * pow(a, 2) - 5 * b))
print(12 // 3)
print(13 % 2)
print(pow(3, 3))
print(6 * 2)
print(16 / 4)