Cod sursa(job #3031305)
Utilizator | Data | 19 martie 2023 14:07:40 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#ifndef INFOARENA
c
#endif
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
ios_base :: sync_with_stdio(false);
int a, b;
fin >> a >> b;
fout << a << b;
return 0;
}