16 lines
155 B
Plaintext
16 lines
155 B
Plaintext
|
#include "doc1.h"
|
||
|
|
||
|
int generated();
|
||
|
int wrapped();
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
if (generated()*wrapped()*doc() == 3*5*7)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
return -1;
|
||
|
}
|
||
|
|