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