﻿from math import exp
def f(n):
    f=1
    for k in range(n):
        f*=exp(1)
    return f

for k in range(5):
    print(f(k),exp(k))
