function ans_price(a,b,c){
	switch (a){
		//樽御輿MyOldFriends
		case 'Mof':
			switch (b){
				case 'A':
					return 3500 * c;
				case 'B':
					return 1000 * c;
			}
		//樽御輿
		case 'Taru':
			switch (b){
				case 'A':
					return 2680 * c;
				case 'B':
					return 1450 * c;
			}
		//はなてばこ
		case 'Hana':
			switch (b){
				case 'A':
					return 2280 * c;
				case 'B':
					return 1140 * c;
				case 'C':
					return 2100 * c;
			}
		//山河
		case 'Sang':
			switch (b){
				case 'A':
					return 1810 * c;
				case 'B':
					return 1790 * c;
				case 'C':
					return 1140 * c;
			}
		//極醸
		case 'Goku':
			switch (b){
				case 'A':
					return 3150 * c;
				case 'B':
					return 1960 * c;
			}
		//原酎
		case 'Genc':
			switch (b){
				case 'A':
					return 3890 * c;
				case 'B':
					return 3160 * c;
			}
	}
}

function ans_article(a,b,c){
	
	if (c > 9){
		c = c / 5;
	}
	else {
		c = 6;
	}
	switch (a){
		//樽御輿MyOldFriends
		case 'Mof':
			switch (b){
				case 'A':
					return 'マイオールドフレンズ720ml';
				case 'B':
					return 'マイオールドフレンズ180ml';
			}
		//樽御輿
		case 'Taru':
			switch (b){
				case 'A':
					return '樽御輿1800ml　　　　　　';
				case 'B':
					return '樽御輿720ml　　　　　　 ';
			}
		//はなてばこ
		case 'Hana':
			switch (b){
				case 'A':
					return 'はなてばこ1800ml　　　　';
				case 'B':
					return 'はなてばこ720ml　　　　 ';
				case 'C':
					return 'はなてばこ(陶器入)720ml ';
			}
		//山河
		case 'Sang':
			switch (b){
				case 'A':
					return '特醸・山河1800ml　　　　';
				case 'B':
					return '山河パック1800ml　　　　';
				case 'C':
					return '山河720ml　　　　　　　 ';
			}
		//極醸
		case 'Goku':
			switch (b){
				case 'A':
					return '極醸1800ml　　　　　　　';
				case 'B':
					return '極醸720ml　　　　　　　 ';
			}
		//原酎
		case 'Genc':
			switch (b){
				case 'A':
					return '原酎（米）1800ml　　　　';
				case 'B':
					return '原酎（米）720ml　　　　 ';
			}
	}
}

function ans_quantity(q){



}