Tìm số
import math
n=int(input())
def tong(n):
return sum(int(digit) for digit in str(n))
a = []
count = 0
i = 1
while count < n:
if tong(i) % 2 == 1:
a.append(i)
count += 1
i += 1
print(a[-1])
import math
n=int(input())
def tong(n):
return sum(int(digit) for digit in str(n))
a = []
count = 0
i = 1
while count < n:
if tong(i) % 2 == 1:
a.append(i)
count += 1
i += 1
print(a[-1])