a=[] for i in range(100): x=float(input()) a.append(x) for i in range(len(a)): if a[i] <= 10: print("A[%.d] = %.1f" % (i,a[i]))