All pastes #2059994 Raw Edit

Mine

public text v1 · immutable
#2059994 ·published 2011-05-15 09:52 UTC
rendered paste body
#include<iostream>
#include<fstream>
using namespace std;
int main() {
    ifstream fin("tiedosto");
    string teksti;
    getline(fin, teksti);
    cout<<teksti<<endl;
}