Mine
public text v1 · immutable#include<iostream>
#include<fstream>
using namespace std;
int main() {
ifstream fin("tiedosto");
string teksti;
getline(fin, teksti);
cout<<teksti<<endl;
}#include<iostream>
#include<fstream>
using namespace std;
int main() {
ifstream fin("tiedosto");
string teksti;
getline(fin, teksti);
cout<<teksti<<endl;
}