Q: What does my program input from and output to?A: Your program shall always input from stdin (Standard Input) and output to stdout (Standard Output). For example, you use scanf in C or cin in C++ to read from stdin, and printf in C or cout in C++ to write to stdout.User programs are not allowed to...