Cod sursa(job #1513667)
Utilizator | Data | 29 octombrie 2015 20:26:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main ()
{
ifstream fin("adunare.in");
ofstream out("adunare.out");
int x,y;
fin>>x>>y;
out<<x+y;
}