Cod sursa(job #3031889)
| Utilizator | Data | 20 martie 2023 23:19:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
int main(){
ifstream in("adunare.in");
ofstream out("adunare.out");
long long int a,b;
in>>a>>b;
out<<a+b;
}
