Cod sursa(job #2889920)
| Utilizator | Data | 13 aprilie 2022 19:28:17 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
int main(){
std::fstream fin("adunare.in", std::ios::in);
std::fstream fout("adunare.out", std::ios::out);
int a,b;
fin>>a>>b;
fout<<a+b;
}