Cod sursa(job #2222121)
Utilizator | Data | 16 iulie 2018 15:26:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream of("adunare.out");
int a,b;
f>>a>>b;
of<<a+b;
return 0;
}