Cod sursa(job #1223748)
| Utilizator | Data | 28 august 2014 18:52:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("A_plus_B.in");
ofstream g("A_plus_B.out");
int a,b,s;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
return 0;
}
