작성일 :

문제 링크

15733번 - 나는 누구인가

설명

입력 없이 "I'm Sexy"를 출력합니다.


접근법

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



Code

C#

1
2
3
4
5
6
7
using System;

class Program {
  static void Main() {
    Console.WriteLine("I'm Sexy");
  }
}

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 << "I'm Sexy";
  
  return 0;
}