#include <bits/stdc++.h>

using namespace std;

int main() {
	
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	
	freopen("AMSTRONG.INP", "r", stdin);
	freopen("AMSTRONG.OUT", "w", stdout);
	
	int number;
	cin >> number;
	
	return 0;
}