aboutsummaryrefslogtreecommitdiff
path: root/problems/starshiplaunchcodes/attachments/template.cpp
blob: 5bf1d308aa11d329f52fad7c7c92b44defb41dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    int s;
    cin >> s; cin.ignore();

    // Write an answer using cout. DON'T FORGET THE "<< endl"
    // To debug: cerr << "Debug messages..." << endl;

    cout << "code(s)" << endl;
}