Cod sursa(job #2614014)
Utilizator | Data | 11 mai 2020 00:27:42 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.32 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main() {
int a, b;
in >> a >> b;
for (long long int i = 0; i < 9000000000; ++i)
for (long long int j = 0; j < 9000000000; ++j)
;
out << a + b;
return 0;
}