작성일 :

문제 링크

11942번 - 고려대는 사랑입니다

설명

입력이 없으며, 첫 줄에 “고려대학교”를 그대로 출력하면 됩니다.


접근법

정해진 문자열을 출력합니다.



Code

C#

1
2
3
4
5
6
7
using System;

class Program {
  static void Main() {
    Console.WriteLine("고려대학교");
  }
}

C++

1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  cout << "고려대학교";

  return 0;
}