9 lines
126 B
C++
9 lines
126 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
int main() {
|
|
printf("Hello World!");
|
|
for(int i=0; i<=10; i++) {
|
|
:
|
|
}
|
|
}
|