Please checkout FAQ: https://codingcompetitions.withgoogle.com/codejam/faq
Section "Coding"
Question: *How should my program read input and write output?*

*TL;DR; *Your program should read from *standard input stream* (e.g. *scanf*, 
*cin* in C/C++, *input()* in python, *System.in* in Java, etc) and print 
your answer to *standard output stream* (*printf*, *cout* in C/C++, 
*print()* in python, *System.out* in Java, etc)

To test you program locally, you can redirect your *standard input stream* 
(or *stdin*) to a file.
To do that you can run the following command

*> ./my_binary < input.txt*

-- 
You received this message because you are subscribed to the Google Groups 
"Google Code Jam" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-code+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-code/72cabef9-7719-465c-84c0-02c25eaba759%40googlegroups.com.

Reply via email to