Cod sursa(job #361732)
Utilizator | Data | 6 noiembrie 2009 15:26:25 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <fstream>
using namespace std;
int main() {
int a, b, s = a + b;
fstream fi("a + b.in", ios::in);
fstream fo("a + b.out", ios::out);
fi >> s;
fi >> a;
fi >> b;
while (s < 200 )
fo << s;
return 0;
}