Cod sursa(job #692525)
| Utilizator | Data | 26 februarie 2012 16:51:57 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<iostream.h>
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main() {
long long a,b;
f>>a>>b;
g<<a+b; }