Cod sursa(job #2922307)
Utilizator | Data | 7 septembrie 2022 21:47:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main ()
{
ifstream miau("adunare.in");
ofstream ham("adunare.out");
long long a, b;
miau>>a>>b;
ham<<a+b;
}