16
1
using System;
2
3
namespace boj
4
{
5
class Program
6
{
7
static void Main(string[] args)
8
{
9
string[] str = { "롤", "오버워치", "배틀그라운드", "애니팡" };
10
11
12
Console.WriteLine("{0}", string.Join(" | ", str));
13
}
14
}
15
}
16
Cached Result