#include <iostream>
using namespace std;
int main()
   {
    double a = 21.09399;
    float b = 10.20;
    int c ,d;
    c = (int) a;
    d = (int) b;
    cout << c <<" " << d;
    return 0;
   }
   