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