Cod sursa(job #3171620)
Utilizator | Data | 19 noiembrie 2023 10:26:22 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<bits/stdc++.h>
using namespace std;
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
long int a,b;
f>>a>>b;
g<<a+b;
f.close(),g.close();
}