Cod sursa(job #2332395)
Utilizator | Data | 30 ianuarie 2019 18:33:02 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <bits/stdc++.h>S
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}