Advertisement
Mikhail-Podbolotov

Untitled

May 15th, 2024
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include "library.h"
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     ifstream input("input.txt");
  7.     ofstream output("output.txt");
  8.     List A;
  9.     A.Read(input);
  10.     EdgeList Res;
  11.     Res.readFromList(A);
  12.     Res.print(output);
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement