Cod sursa(job #3293912)
Utilizator | Data | 13 aprilie 2025 11:36:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in"); ofstream fout("adunare.out");
#define ll long long
int main(){
ll n, m;
fin >> n >> m;
fout << n + m << endl;
}