Cod sursa(job #2689693)
Utilizator | Data | 21 decembrie 2020 21:34:56 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
#include <math.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b;
fin>>a;
fin>>b;
fout<<a-b;
fin.close();
fout.close();
}