Cod sursa(job #3186531)
Utilizator | Data | 23 decembrie 2023 16:53:38 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream>
#include <fstream>
int main(){
std::ifstream bemenet("adunare.in");
std::ofstream kimenet("adunare.out");
int a,b;
bemenet>>a>>b;
kimenet<<a+b;
}