using System;
public class Program
{
public static void Main()
int getal = Convert.ToInt32(Console.ReadLine());
printPowers(getal);
}
public static void printPowers(int getal)
for(int i = 2; i <= 5; i++){
getal += getal;
Console.WriteLine("tot de macht van " + i + " = " + getal);