Skip to content

Instantly share code, notes, and snippets.

@sota1235
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save sota1235/11212122 to your computer and use it in GitHub Desktop.

Select an option

Save sota1235/11212122 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
while True:
print "借りる値段を入力してね٩(ˊᗜˋ*)و"
n = input('> ')
month = n * (1.1 ** 3)
year = n * (1.1 ** 36)
five_month = n * (1.1 ** (36 * 5))
print "1ヶ月で{}円, 1年で{}円, 5年で{}円かかるよ(,,Ծ‸Ծ,, )\n".format(int(month),int(year),int(five_month))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment