from math import sin
x = float(input("Введите число: "))
result = sin(x)
print("Sin от", x, "равен", result)
from math import sin
x = float(input("Введите число: "))
result = sin(x)
print("Sin от", x, "равен", result)