Cod sursa(job #3251902)
Utilizator | Data | 27 octombrie 2024 17:57:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
#define FIN "adunare.in"
#define FOUT "adunare.out"
using namespace std;
ifstream input(FIN);
ofstream output(FOUT);
int main(){
int y;
int a;
input>>y>>a;
int b = y+a;
output<<b;
}