Answer:
The pseudocode is in the explanation.
Step-by-step explanation:
First, start with the user input.
user_input=scanner.next()
while user_input is not 1: ==> if the input is 1, the while loop wouldn't run
 print(user_input/2+" ") ==> first print the input/2: Ex: If input=40, print 20
 Also, remember to include the space
 user_input/=2  ==> change the user_input by dividing it by 2 everytime