Cod sursa(job #1993406)
Utilizator | Data | 22 iunie 2017 21:15:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
}