Cod sursa(job #1540753)
Utilizator | Data | 3 decembrie 2015 10:29:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream inf ("input.in");
ofstream outf ("output.out");
int a, b;
inf >> a >> b;
outf << a + b;
}