Cod sursa(job #2086617)
Utilizator | Data | 12 decembrie 2017 11:54:06 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | simtest | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("input.in");
ofstream fout("output.out");
int a,b;
fin>>a;
fin>>b;
fout<<a+b;
}