A = int(input('Введите A: '))
K = 1
while True:
s = 0
for i in range(1, K + 1):
s += 1 / i
if s > A:
print('Сумма:', s, 'K:', K)
break
K += 1
A = int(input('Введите A: '))
K = 1
while True:
s = 0
for i in range(1, K + 1):
s += 1 / i
if s > A:
print('Сумма:', s, 'K:', K)
break
K += 1