작성일 :

문제 링크

23234번 - The World Responds

설명

입력 없이 "The world says hello!"를 출력합니다.


접근법

정해진 문장을 그대로 출력하면 됩니다.



Code

C#

1
2
3
4
5
6
7
using System;

class Program {
  static void Main() {
    Console.WriteLine("The world says hello!");
  }
}

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 << "The world says hello!\n";

  return 0;
}