Cod sursa(job #3220597)
| Utilizator | Data | 4 aprilie 2024 12:12:49 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int n,m;
int main(){
in>>n>>m;
out<<n+m;
}
