Cod sursa(job #1989490)
Utilizator | Data | 7 iunie 2017 17:23:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int long a,b,c;
ifstream g ("adunare.in");
ofstream p ("adunare.out");
g>>a;
g>>b;
c=a+b;
p<<c;
return 0;
}