Cod sursa(job #2432422)
Utilizator | Data | 23 iunie 2019 16:58:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int a,b;
int main() {
in>>a>>b;
out<<a+b;
}