Cod sursa(job #847129)
| Utilizator | Data | 3 ianuarie 2013 13:14:16 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<conio.h>
#include<fstream>
#include<iostream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int x,y;
int main()
{
f>>x>>y;
g<<x+y;
getch();
return 0;
}