actual o/p & expected o/p are same but test cases failed
Created 2 years ago
51
Views
1
Comments

My code:-
a = int(input())
if a == 0:
print("NULL")
else:
table = ""
for i in range(1,a+1):
product = 9*i
table += str(product) + " "
print(table)