cp-library

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

View the Project on GitHub ma-tw/cp-library

:x: test/atcoder_example.test.cpp

Code

#define PROBLEM "https://atcoder.jp/contests/abc333/tasks/abc333_a"
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) cout << n;
    cout << endl;
}
#line 1 "test/atcoder_example.test.cpp"
#define PROBLEM "https://atcoder.jp/contests/abc333/tasks/abc333_a"
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) cout << n;
    cout << endl;
}
Back to top page