import math
print("The Floor and Ceiling Value of 23.56 are :" + str(math.ceil(23.56)) +"," + str(math.floor(23.56)))
x = 10
y = -15
print("The Value of x after copying the sign from y is:" + str(math.copysign(x,y)))
print("The Absolute Value of -96 and 56 are:" + str(math.fabs(-96)) + "," + str(math.fabs(56)))
print("The GCD of 24 and 56 :" + str(math.gcd(24,56)))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: