n=int(input("Enter the number of rows:")) for i in range(1,n+1): for j in range(0,i): print(chr(64+i),end='') print()