Cod sursa(job #1533790)
Utilizator | Data | 22 noiembrie 2015 22:46:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream in("suma.in");
ofstream out("suma.out");
int a,b;
in>>a>>b;
out<<a+b;
return 0;
}