for i in range(2000,9999): s=0;j=i while j:s+=j%10;j//=10 if s==6:print(i)