Cod sursa(job #1503516)
Utilizator | Data | 16 octombrie 2015 13:26:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
}