#include <iostream>
using namespace std;

int main() {
    int intValue = 10;
    float floatValue = intValue;  // تبدیل خودکار از int به float
    cout << "intValue: " << intValue << endl;
    cout << "floatValue: " << floatValue << endl;
    return 0;
}