Cod sursa(job #1733155)
Utilizator | Data | 23 iulie 2016 19:36:55 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("A+B.in");
ofstream g("A+B.out");
int a,b,s;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
return 0;
}