Cod sursa(job #2748839)
| Utilizator | Data | 3 mai 2021 17:00:45 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long long int a,b,s=0;
f>>a>>b;
s=s+a+b;
g<<b;
return 0;
}
