Pagini recente » Cod sursa (job #2451757) | Cod sursa (job #1739512) | Cod sursa (job #2704720) | Cod sursa (job #1446180) | Cod sursa (job #2086614)
| Utilizator |
Alexandru aTx98 |
Data |
12 decembrie 2017 11:52:48 |
| Problema |
A+B |
Scor |
0 |
| Compilator |
cpp |
Status |
done |
| Runda |
simtest |
Marime |
0.33 kb |
#include <iostream>
#include <fstream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv)
{
ifstream cin("adunare.in.txt");
ofstream cout("adunare.out.txt");
int a,b;
cin >> a >> b;
cout << a+b;
return 0;
}