#include <iostream>
#include <cmath>

int main() {
    double angle = 45.0; // زاویه به واحد درجه
    double radians = angle * M_PI / 180.0; // تبدیل زاویه به رادیان

    double cosine_value = cos(radians); // محاسبه کسینوس زاویه

    std::cout << "Cosine of " << angle << " degrees is: " << cosine_value << std::endl;

    return 0;
}