Cod sursa(job #527413)
Utilizator | Data | 31 ianuarie 2011 14:12:04 | |
---|---|---|---|
Problema | Cuplaj maxim in graf bipartit | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.2 kb |
#include <fstream>
using namespace std;
ifstream f("cuplaj.in");
ofstream g("cuplaj.out");
int main ()
{ int x,y;
f>>x>>y;
g<<min(x,y);
f.close (); g.close ();
return 0;
}