Cod sursa(job #1012436)
Utilizator | Data | 18 octombrie 2013 23:40:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main ()
{
int A , B ;
in>>A>>B;
out<<A+B;
return(0);
}