Cod sursa(job #1702365)
Utilizator | Data | 15 mai 2016 09:19:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
#include <iostream>
using namespace std;
int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long a, b;
fin>>a>>b;
fout<<a+b;
}