Cod sursa(job #2699776)
Utilizator | Data | 25 ianuarie 2021 20:42:19 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.3 kb |
#include<iostream>
#include<string>
#include<stdlib.h>
#include<fstream>
#include <time.h>
#include <algorithm>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream of("adunare.out");
int a,b;
in>>a>>b;
of<<a+b;
cout<<a+b;
in.close();
of.close();
}