Cod sursa(job #905468)
| Utilizator | Data | 5 martie 2013 21:04:56 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
//A+B
#include<fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main() {
int A,B,S;
in>>A>>B;
out<<A+B;
}
