Cod sursa(job #1977936)
Utilizator | Data | 6 mai 2017 15:02:38 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<bits/stdc++.h>
using namespace std;ifstream fin("adunare.in");ofstream fout("adunare.out");
int main(){ int A,B;fin>>A>>B;fout<<A+B;}