using System;
namespace boj
{
class Program
static void Main(string[] args)
string[] str = { "롤", "오버워치", "배틀그라운드", "애니팡" };
Console.WriteLine("{0}", string.Join(" | ", str));
}