n = input() ans = n cnt = 1 while len(ans) < 9: ans += n cnt += 1 if cnt==1: ans += n print(ans)