Skip to content

Commit 78a24df

Browse files
author
Jessica Yung
committed
feat(usaco): add template for submitting solns
1 parent 929b969 commit 78a24df

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

usaco/template.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
ID: jessica41
3+
PROG: test
4+
LANG: C++11
5+
*/
6+
#include <iostream>
7+
#include <fstream>
8+
#include <string>
9+
#include <algorithm>
10+
11+
using namespace std;
12+
13+
int main() {
14+
ofstream fout ("test.out");
15+
ifstream fin ("test.in");
16+
int a, b;
17+
fin >> a >> b;
18+
fout << a+b << endl;
19+
return 0;
20+
}
21+

0 commit comments

Comments
 (0)