"""Continually agrees that that is indeed what it said."""

__author__ = 'Nick Montfort <nickm@nickm.com>'
__version__ = '0.1'

from sys import stdout
from random import choice

def affirm():
	return choice(["indeed","exactly","certainly","precisely", \
	    "definitely","without doubt","of course","absolutely", \
	    "without question","by all means"])
	
def s():
	return choice([" is","'s"])

while (1):
    sentence = choice(["that" + s() + " " + affirm() + " what I said", \
        affirm() + ", I said that"])
    full = choice(["yes","yes, "+sentence,sentence])
    stdout.write(full.capitalize()[0] + full[1:] + ". ")

