Cod sursa(job #1234824)
Utilizator | Data | 28 septembrie 2014 05:17:03 | |
---|---|---|---|
Problema | Potrivirea sirurilor | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#define MAXN 2000010
using namespace std;
int main()
{
ifstream f("strmatch.in");
ofstream g("strmatch.out");
string s1, s2;
f >> s1 >> s2;
f.close();
cout << s1 << "\n" << s2 << "\n";
g.close();
}