239 - Taka Paisa
Taka Paisa
Time Limit: 1 sec
The Problem
Write a very simple program which read a floating point number T which is the representation of Taka. Your task is that just seperate the floating point Taka to Taka and Paisa.
Example:
if T = 10.75 then
10 Taka 75 Paisa
The Input
Input will one floating point number T (1.01<= T <=100.99)
The Output
You have to print the amount to taka and paisa see the sample output in separate lines.
Sample Input
10.75
Sample Output
10 Taka 75 Paisa
Problem Setter: Shahin Shams