# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
341532 | 2020-12-29T23:07:37 Z | ProUG | Traffic (IOI10_traffic) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; ifstream fin("traffic.in"); ofstream fout("traffic.out"); int N; int main () { fin >> N; cout << N << endl; }