Print the Table Provided by User : By while loop

PHOTO EMBED

Sat Nov 05 2022 03:02:20 GMT+0000 (Coordinated Universal Time)

Saved by @codewithakash

num = int(input())
i = 1
while (i <= num):
    print(i * num)
    i = i + 1
content_copyCOPY