#include <iostream>
#include <cmath>

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