Cod sursa(job #2424335)
Utilizator | Data | 22 mai 2019 21:42:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int A,B;
int main()
{
f>>A>>B; g<<A+B;
return 0;
}