Pagini recente » Cod sursa (job #1365526) | Cod sursa (job #1661453) | Cod sursa (job #956375) | Cod sursa (job #1683980) | 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;
}