#!/usr/bin/env python3
print("\x1b[2J\x1b[1;1H\n")

print("Hello there!")

x = input("Your name? ")
print("\x1b[2J\x1b[1;1H\n")

print("Hello there, {0}.".format(x))