import math
h = float(input('h = '))
x = float(input('x = '))

f1 = math.sin(x)
f2 = math.sin(x+h)
dx = (f2 - f1)/h

print('den deriverte = ', dx)
