#!/bin/env python
# -*- coding: utf-8 -*-

def doubleIt(i): return 2*i

for num in range(0,10):
	print "2 * %d = %d" % (num, doubleIt(num))

