Cod sursa(job #3137718)
Utilizator | Data | 14 iunie 2023 17:50:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream in("adunare.in");
ofstream ou("adunare.out");
int main()
{
long long a,b;
in>>a>>b;
ou<<a+b;
return 0;
}