[백준] C# : 1998년생인 내가 태국에서는 2541년생?! (18108번)

ssu_hyun·2022년 7월 28일
0

Data Structure & Algorithm

목록 보기
42/67
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Baekjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            int y = int.Parse(Console.ReadLine());
            int result = y - 543;
            Console.WriteLine(result);
        }
    }
}

0개의 댓글