Cod sursa(job #1586616)
| Utilizator | Data | 1 februarie 2016 14:51:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
int a,b;
using namespace std;
int main()
{
ifstream x("adunare.in");
ofstream y("adunare.out");
x>>a>>b;
y<<a+b<< "\n";
}
