#!/usr/bin/env python3 age = input("年齢を入力して: ") age = int(age) day = age * 365 print("あなた生まれてからの日数は: " + str(day) + " 日です")