#include <iostream>
#include <iomanip>

int main() {
    double price;
    int quantity;

    std::cin >> price;
    std::cin >> quantity;

    int total = static_cast<int>(price * quantity);

    std::cout << std::fixed << std::setprecision(2) << price << " " << quantity << " " << total << std::endl;

    return 0;
}    
/**************************************************************
	Problem: 1703
	User: fuyijun
	Language: C++
	Result: Accepted
	Time:4 ms
	Memory:2072 kb
****************************************************************/