#include <iostream>

using namespace std;


int main() 
{
    
    cout << alignof(double) << endl;
    return 0;
}