Respuesta :
Answer:
Following is given the required program. All the steps are described by comments. The sample output for the program is also attached.
I hope it will help you!
Explanation:


The program is a sequential program, and does not require loops, iterations and conditional statements.
The program in Python, where comments are used to explain each line is as follows:
#This gets integer input
intInput = int(input("Integer between 32 and 126: "))
#This gets float input
floatInput = float(input("Float: "))
#This gets character input
charInput = input("Character: ")
#This gets string input
strInput = input("String: ")
#This prints the input separated by space
print(intInput,floatInput,charInput[0],strInput)
Read more about similar programs at:
https://brainly.com/question/20723474