Commit 3d62b517 by BellCodeEditor

auto save

parent 07805f3b
Showing with 19 additions and 5 deletions
i=0
for i in random(9):
i*i+1=
print(i)
\ No newline at end of file
for i in range(1,10):
for j in range(1,i+1):
print(j,"*",i,"=",j*i,end=' ')
print()
\ No newline at end of file
a=10
b=20
c=b
b=a
a=c
print(a)
print(b)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment