Cod sursa(job #2506415)
Utilizator | Data | 8 decembrie 2019 02:00:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b,x;
int main()
{
fin >> a>> b;
x = a + b;
fout << x;
return 0;
}