playground/cpp/files.cpp

17 lines
259 B
C++
Raw Normal View History

2023-05-02 09:47:56 +00:00
/*
Reference: https://en.cppreference.com/w/cpp/container/vector
Tried on: g++ 7.5.0
*/
#include<iostream>
#include<fstream>
int main() {
int x, y;
std::ifstream fin("input.txt");
fin >> x >> y >> y;
std::cout << x << ", " << y << "\n";
}