← Back to List

9316번: Hello Judge ↗

Solutions

C++14
140 B | 140 chars
#include <iostream>
using namespace std; 
int main()
{
	int N;
	cin>>N;
	for(int x=1; x<=N; x++)cout<<"Hello World, Judge "<<x<<"!"<<endl;
}