#Pattern Numbers & Stars - 1
This is working fine in pycharm but not in the coding block compiler. Could you please help me with this.
#MySolution
star = 0
N = int(input())
for i in range(N):
for j in range(N - i):
print(j + 1, end = '')
for k in range(star - 1):
print("*", end='')
star = star + 2
if(i!=N):
print()


