barrettruth.com/map.cc
2024-07-03 10:41:10 -05:00

10 lines
183 B
C++

#include <fstream>
#include <iostream>
int main() {
std::ifstream ifs{"aggieland.txt"};
std::string read1;
int read2;
ifs >> read1 >> read2;
std::cout << read1 << read2;
}