Cod sursa(job #2585258)
Utilizator | Data | 18 martie 2020 21:54:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<bits/stdc++.h>
using namespace std;
long long int a,b;
int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
}