There's a much better way to do this now, check out Readline on nuget: https://www.nuget.org/packages/ReadLine
install-package Readline
var input = ReadLine.Read("Enter weekly cost: ", "135");
I like to use the console to write interactive tests, and having default values can really help things.