# name = input('what is your name?')
# print('helooo' + name)
# # Funamental data types
# int
# float
# bool
# str
# list
# tuple
# set
# dict
# #classes -> custom types
# #specialized data types
# None
# int & float
# print (type(9*2))
# print (type(2+33))
# print (type(22-4))
# print (type(1/3))
# print (type(0.223232))
# print(22)
# print (type(11.1+0.9)) #float
# print (4**4) # powerof
# print (2//4) #rounded off (returns int)
# print (5%4) #modulo (whats with the remainder of the division )