백준

백준 2743번 c#

대왕군 2024. 1. 10. 15:34

using System;

namespace Baekjoon
{
    internal class Program
    {
        static void Main(string[] args)
        {
            int textLength = Console.ReadLine().Length;
            Console.WriteLine(textLength);
        }
    }
}

'백준' 카테고리의 다른 글

백준 9086번 c#  (0) 2024.01.10
백준 15552번 c#  (0) 2024.01.10
백준 10811번 c#  (0) 2024.01.10
백준 3052번 c#  (0) 2024.01.10
백준 27866번 c#  (0) 2024.01.10