import math
def toplama(x, y):
print("Sonucunuz:", x + y)
def cikarma(x, y):
print("Sonucunuz:", x - y)
def carpma(x, y):
print("Sonucunuz:", x * y)
def bolme(x, y):
print("Sonucunuz:", x / y)
def kare(x):
print("Sonucunuz:", math.sqrt(x))
def kup(x):
print("Sonucunuz:", x * x * x)
def logaritma(x):
print("Sonucunuz:", math.log(x, 2))
def sinus(x):
print("Sonucunuz:", math.sin(x))
def cosinus(x):
print("Sonucunuz:", math.cos(x))
def tanjant(x):
print("Sonucunuz:", math.tan(x))
def faktoriyel(x):
print("Sonucunuz:", math.factorial(x))