Cod sursa(job #3170575)
Utilizator | Data | 17 noiembrie 2023 19:35:18 | |
---|---|---|---|
Problema | Iv | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <fstream>
#include <cstring>
using namespace std;
ifstream fin ("iv.in");
ofstream fout("iv.out");
char a[501],b[501];
int main()
{
fin>>a;
fin>>b;
fout<<strlen(a)*strlen(b);
return 0;
}