Cod sursa(job #2039535)
Utilizator | Data | 14 octombrie 2017 17:11:40 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int A,B;
int main()
{
ifstream fin("adunae.in");
ofstream fout("adunare.out");
fin>>A>>B;
fout<<A+B;
}