mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 16:13:53 +00:00
24 lines
309 B
C#
24 lines
309 B
C#
using System;
|
|
|
|
namespace problem_246A
|
|
{
|
|
class problem_246A
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
int n = int.Parse(Console.ReadLine());
|
|
if (n < 3)
|
|
{
|
|
Console.Write("{0}", -1);
|
|
}
|
|
else
|
|
{
|
|
for (int i = n; i > 0; i--)
|
|
{
|
|
Console.Write("{0} ", i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|