#include<stdio.h> int c(int n) { int i; if(n<0) n=-n; else if(n==0) return 1; else for(i=2;i<n/2;++i) { if(n==i*i*i) return 1; }return 0; }