Cod sursa(job #1189673)
Utilizator | Data | 23 mai 2014 12:35:21 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.31 kb |
#include <fstream>
#include <iostream>
#include <stdio.h>
using namespace std;
int a=0,b=0,c=0;
int main(){
#ifndef ONLINE_JUDGE
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
#endif
cin >> a;
cin >> b;
c = a+b;
cout << c << "\n";
return 0;
}