#include <iostream>
using namespace std;

int main() {
    auto x = unsigned int(12.4);
    cout << x << endl;
    return 0;
}