#include <iostream>
using namespace std;

int main() {
    double doubleValue = 12.34;
    int intValue = static_cast<int>(doubleValue);  // استفاده از static_cast
    cout << "doubleValue: " << doubleValue << endl;
    cout << "intValue: " << intValue << endl;
    return 0;
}