Cod sursa(job #1845222)
Utilizator | Data | 11 ianuarie 2017 01:15:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream in ( "adunare.in" );
ofstream out( "adunare.out" );
int main( void ) {
ios::sync_with_stdio( false );
int a, b;
in >> a >> b;
out << a + b << endl;
return 0;
}