Can you guess the output of the following Python code??
(If the input value 3)
m = int(input("enter the number of rows: ")) 
for i in range (1,m+1):
for j in range (1,i+1):
print (j,end="")
print()


Posted on by