Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled 1

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-04T08:04:47.482434Z

Updated

2024-12-04T08:04:47.482434Z

a,b=0,1
while b<10:
    print (b)
    a,b=b,a+b

n=b
m=a+b
a=n
b=m
INFO