Set up base directory for usaco and started on gift1
This commit is contained in:
22
usaco/base.cpp
Normal file
22
usaco/base.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user