[Algospot] MERCY

이정진·2021년 8월 16일
0

PS

목록 보기
8/76
post-thumbnail

MERCY

알고리즘 구분 : 구현

소스코드 :

#include <bits/stdc++.h>

using namespace std;

int n;

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

	cin >> n;
	for(int i = 0; i < n; i++) {
		cout << "Hello Algospot!" << endl;
	}	

	return 0 ;
}

0개의 댓글