Macrons


Submit solution

Points: 100
Time limit: 30.0s
Memory limit: 256M

Author:
Problem type

Problem Statement

Macarons are delicate sandwich cookies with a crisp exterior and bright colors popular in tea parties. Zainab loves macrons and wants to help her mother bake some for her friends so she can invite them over.

In order to bake 30 macrons, she needs the following ingredients:

  • 100 gram almond flour
  • 3 egg whites
  • 50 gram sugar
  • 200 gram powdered sugar
  • 2 drops of food coloring

All ingredients are available in her mother's pantry except for almond flour and powdered sugar. She needs to order them from the store.
Help Zainab calculate how much almond flour and powdered sugar she needs to bake X number of macrons.


Constraints

X is the number of macrons, an integer from 0 to 500.


Input

Input is in the following format:

X

Output

Print the weight of almond flour and powdered sugar required to bake the macrons. The weight needs to be integer.


Samples

Sample 1

Input Output
30 100
200

Sample 2

Input Output
50 166
333

Sample 3

Input Output
120 400
800

Comments

There are no comments at the moment.