exe-18
#Fundamental data types
#int - integers-numbers - no decimal-places
#float- decimal numbers - and it take more spaces or memory
print(2+4)
print(type(6))
print(type(2-4))
print(type(2*4))
print(type(2/4))
print(type(10.56))
print(2 ** 3)
print(5 // 4)
print( 5 % 4) #moduler
# 20-video- math functions
print(round(3.9))
print(abs(-20))
#21-video - developer fundamental --use google...to find key words to program
#22-video - # operator precedence
print((20-3) + 2 ** 2)
INFO