# Nhập số tiền
A = int(input('Nhập số tiền A đồng: '))
# Tính tổng lãi và gốc sau 24 tháng
monthly_interest = 0.01
total_interest = 0
total_principal = 0
for i in range(1, 25):
interest = A * monthly_interest
total_interest += interest
total_principal += A
A += interest
print('Tổng lãi sau 24 tháng:', total_interest)
print('Tổng gốc sau 24 tháng:', total_principal)