Cod sursa(job #1845220)
Utilizator | Data | 11 ianuarie 2017 01:14:26 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 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 誇, 緑;
in >> 誇 >> 緑;
out << 誇 + 緑 << endl;
return 0;
}