Cod sursa(job #197640)
Utilizator | Data | 5 iulie 2008 12:50:47 | |
---|---|---|---|
Problema | Reconst | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Junior Challenge 2008 | Marime | 0.23 kb |
#include<fstream.h>
int main()
{
ifstream fin("reconst.in");
ofstream fout("reconst.out");
long i,n,m,a[2001],b[2001],s[2001];
fin>>n>>m;
for(i=1;i<=m;i++)
fin>>a[i]>>b[i]>>s[i];
fout<<"1 4 3";
return 0;
}