for i in range(5):
for j in range(i):
i=i+j
print(i,end="@")
print(j)
Answers
Answered by
0
j is equal to 5, i, end = 10
Similar questions