Answer:
x = 1
y = 3
print x
loop nine times:
print y;
y = y + x
x = y - x
Step-by-step explanation:
I avoided the use of a helper variable to get the previous value of y into x.
This is pseudocode, you can implement it using any programming language.