Cod sursa(job #217180)
| Utilizator | Data | 27 octombrie 2008 15:08:33 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.35 kb |
/*
* File: main.cpp
* Author: Catilin
*
* Created on October 10, 2008, 11:29 AM
*/
#include <stdlib.h>
#include<fstream.h>
/*
*
*/
ifstream f("adunare.in");
ofstream g("adunare.out");
int long a;
int long b;
int main(int argc, char** argv) {
f>>a>>b;
f.close();
g<<a+b;
g.close();
return (0);
}
