#include <iostream>
#include <cmath>

int main() {
    double num = 6.0;
    std::cout << "ceil(6.0) = " << ceil(num) << std::endl;
    return 0;
}