print('Hi, visitor, who are you? Enter your name:') name = input() print('Hello', name, '. How are you today?') print('Type: ', type(name)) print("----------------") print('Please enter an integer value:') x = input() print('Please enter another integer value:') y = input() x1 = int(x) y1 = int(y) print(x1, '+', y1, '=', x1 + y1) print("----------------") print('Please enter an floating-point value:') x = input() print('Please enter another floating-point value:') y = input() x1 = float(x) y1 = float(y) print(x1, '+', y1, '=', x1 + y1) print(x1, '+', y1, '=', x1 + y1, sep="") #no space