Cod sursa(job #419003)
Utilizator | Data | 16 martie 2010 20:13:35 | |
---|---|---|---|
Problema | Jocul Flip | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <fstream>
#include <string>
using namespace std ;
fstream fin ( "flip.okey" , ios::in ) , fout ( "flip.out" , ios::out ) ;
int main ()
{
string s ;
getline ( fin , s ) ;
fin.close () ;
fout << s ;
fout.close () ;
}