Ответ:
import math
x = int(input('Input X: '))
y = int(input('Input Y: '))
if y == math.sin(x):
print(True)
else:
print(False)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import math
x = int(input('Input X: '))
y = int(input('Input Y: '))
if y == math.sin(x):
print(True)
else:
print(False)