помогите пж дам 80 баллов реал
Ответы
Python:
# 1
A = int(input())
B = int(input())
# AX^2 - BX = 0
# X(AX - B) = 0
# AX = B | : A
# X = A/B
roots = [0, A / B]
print(*roots)
# ===============
# 2
from math import pi
L = int(input())
a = int(input())
if (L / (2 * pi)) < (a / 2):
print('Пройдёт: ширина колобка ', L / (2 * pi) * 2, ', ширина окна ', a)
else:
print('Не пройдёт: ширина колобка ', L / (2 * pi) * 2, ', ширина окна ', a)
# ===============
# 3
N = int(input('N='))
T = int(input('T='))
m = int(input('m='))
R = int(input('R='))
S = int(input('S='))
amount = N * m + T * R
if (amount == S):
print('спасибо за покупку')
elif amount < S:
print('возьмите сдачу')
elif amount > S:
print('доплатите еще')
# ===============
# 4
x = input()
y = input()
print(max([x, y]))