#B3952. Book Purchase Calculation

    ID: 11609 Type: Default 1000ms 256MiB

Book Purchase Calculation

Book Purchase Calculation

Little Yang has some allowance money that he wants to use to purchase books. Each book costs \(13\) yuan. Given the amount of money he has, write a program to calculate how many books he can buy and how much money will remain.

inputFormat

The input consists of a single integer representing the amount of money.

outputFormat

Output two integers separated by a space: the first is the number of books that can be purchased, and the second is the remaining amount of money.

sample

100
7 9