Can someone help me fix the loop (the IDE indicates "unexpected indent" on the first line) and Please suggest be other loops that can be used in the same place
while True:
num = int(input(""" Enter Number: """))
temp = num
numb = temp
zar = 1
print("Develped by Umar Mushtaq")
for _ in range(10):
print(numb, "X", zar, "=", num)
num += numb
zar+= 1
print("Press Ctrl+C To Exit")