x1 = 5 x2 = 3*2 x3 = 5/4 # float point division x4 = 8/4 # float point division x5 = 7%4 # remainder x6 = int(2.6) # type conversion, truncating to integer x7 = round(2.6) # round up to integer x8 = 2**100 # a very large integer print( x1, x2, x3, x4 ) print( x5, x6, x7, x8 ) print( type(5) ) # output data type of a value print( type(x1), type(x3), type(x4) ) # output data type of variables