using System;
// A prime number is a natural number that has exactly two distinct natural number divisors: the number 1 and itself.
// Given a number n, print all the prime numbers in the interval o to n.
public class Program
{
public static void Main()
var n = 31;
Console.WriteLine("Hello World");
}