using System;
using System.Diagnostics.Tracing;
namespace EvenPowersOf_2
{
internal class Program
{
static void Main(string[] args)
{
int n = int.Parse(Console.ReadLine());
for (int power = 0; power <= n; power += 2)
{
Console.WriteLine(Math.Pow(2, power));
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)