Microsoft Interview Question

Given n, print on the screen 10^n

Interview Answer

Anonymous

Jan 21, 2018

print(1) for i in range(0,n): print(0)