Cod sursa(job #2083192)
Utilizator | Data | 7 decembrie 2017 10:55:26 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.32 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");
ofstream cout("adunare.out");
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}