Cod sursa(job #3204150)
Utilizator | Data | 15 februarie 2024 19:15:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b;
int main()
{
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}