using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Study11
{
class App
{
//생성자
public App()
{
//boj 9086 문자열
string[] arr = {
"ACDKJFOWIEGHE",
"O",
"AB"
};
//여기서부터 코드 작성
string a = "ACDKJFOWIEGHE";
Console.Write(a[0]);
Console.WriteLine(a[a.Length - 1]);
string b = "0";
Console.Write(b[0]);
Console.WriteLine(b[b.Length - 1]);
string c = "AB";
Console.Write(c[0]);
Console.WriteLine(c[c.Length - 1]);
//출력
//AE
//OO
//AB
}
}
}