// copy PPM image from standard input to standard output // #include "ppm.h" int main( void) { ppm a = ppm_read(); ppm_write( a); return 0; }