Cod sursa(job #3170344)

Utilizator divadddDavid Curca divaddd Data 17 noiembrie 2023 14:16:38
Problema Iv Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <bits/stdc++.h>
using namespace std;
const int NMAX = 502;
int n,m;
string a,b;

ifstream fin("iv.in");
ofstream fout("iv.out");

int main()
{
    fin >> a >> b;
    assert(a.size() == b.size());
    return 0;
}