#!/usr/bin/python
# -*- coding: utf-8 -*-
 
def nombre(n):
    if n == 0:
        u = 2000
    else:
        u = nombre(n-1)*0.95+200
    return u
    
for i in range(1,21):
    print(nombre(i))
