Cod sursa(job #790360)
| Utilizator | Data | 20 septembrie 2012 23:18:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream>
using namespace std;
short a,b;
ifstream in("suma.in");
ofstream out("suma.out");
int main()
{
in>>a>>b;
out<<a+b;
}
