Cod sursa(job #1846673)
Utilizator | Data | 13 ianuarie 2017 22:08:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<bits/stdc++.h>
using namespace std;
int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
ios::sync_with_stdio(false);
fin.tie(0);int a,b;
fin >>a>>b;fout<<a+b;
return 0;
}