Cod sursa(job #1500104)
Utilizator | Data | 11 octombrie 2015 15:31:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b,s;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
}