Cod sursa(job #2202011)
Utilizator | Data | 6 mai 2018 22:48:18 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int x,y,z;
in>>x>>y;
z=x+y;
out<<z;
return 0;
}