작성일 :

문제 링크

15962번 - 새로운 시작

설명

입력 없이 응원의 문구 “파이팅!!”을 출력합니다.


접근법

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



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
#include <bits/stdc++.h>
using namespace std;

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

  cout << "파이팅!!";
  return 0;
}