Cod sursa(job #1867439)
Utilizator | Data | 4 februarie 2017 08:52:07 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in >> a >> b;
out << a+b;
}