cpplib

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub morioprog/cpplib

:heavy_check_mark: test/aoj/ITP1_1_A.short.test.cpp

Depends on

Code

#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_1_A"

#include "../../template/short.hpp"

signed main() {

    cout << "Hello World" << endl;

}
#line 1 "test/aoj/ITP1_1_A.short.test.cpp"
#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_1_A"

#line 1 "template/short.hpp"
#include <bits/stdc++.h>
using namespace std;
// #include <atcoder/all>
using ll = long long;
#define REP(i, n)    for (ll (i) = 0;   (i) < (n); ++(i))
#define FOR(i, a, b) for (ll (i) = (a); (i) < (b); ++(i))
#line 4 "test/aoj/ITP1_1_A.short.test.cpp"

signed main() {

    cout << "Hello World" << endl;

}
Back to top page