Computer Science, asked by minakshikumari0019, 6 months ago

f =2
s=3
t=f+s
print(f,s,t)
f=f+s+t
t=s*f
print(f,s,t)

Answers

Answered by assingh
5

Answer:

Given below:-

Explanation:

It is kind of looping statement.

Output will be like

(2,3,5)

(10,3,30)

and it will go like this forever.....

Similar questions