#include <iostream>
#include <type_traits>
using namespace std;

class C
{
	int i;
	double d;
};

int main() {
	cout << std::is_pod<C>::value << endl;
	return 0;
}