Data Type C

#include 
int main(void)
{
  int i;
  for(i = 1; i < 11; i++)
    printf("%d %d %d\n", i, i * i, i * i * i);
  return 0;
}