Set up base directory for usaco and started on gift1

This commit is contained in:
2022-01-06 19:56:43 +01:00
parent 1f1d45e2db
commit a191aec9bb
2 changed files with 92 additions and 0 deletions

22
usaco/base.cpp Normal file
View File

@@ -0,0 +1,22 @@
/*
ID: philipp17
PROG:
LANG: C++
*/
/* LANG can be C++11 or C++14 for those more recent releases */
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ofstream fout (".out");
ifstream fin (".in");
string a, b;
fin >> a >> b;
return 0;
}