mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 08:12:21 +00:00
24 lines
322 B
C#
24 lines
322 B
C#
using System;
|
|
|
|
namespace problem_1004B
|
|
{
|
|
class problem_1004B
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
int n = int.Parse(Console.ReadLine().Split(' ')[0]);
|
|
for (int i = 0; i < n; i++)
|
|
{
|
|
if (i % 2 == 0)
|
|
{
|
|
Console.Write("1");
|
|
}
|
|
else
|
|
{
|
|
Console.Write("0");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|