Cod sursa(job #1976855)
Utilizator | Data | 4 mai 2017 13:35:15 | |
---|---|---|---|
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 fin ("date.in");
ofstream fout ("date.out");
int a,b,S;
fin>>a;
fin>>b;
S=a+b;
fout<<S;
}