Cod sursa(job #1711907)
Utilizator | Data | 1 iunie 2016 15:51:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
// NEW CODING STYLE BITCHEEEEEEEEES!!
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int A, B;
int main() {
fin >> A >> B;
fout << A + B << '\n';
}