[ create a new paste ] login | about

Link: http://codepad.org/fylKRtuU    [ raw code | output | fork ]

C, pasted on Sep 2:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main()
{
  int a=256;
  int b=512;
  int c=1024;
  if (a*a*a*a+b*b*b*b==c*c*c*c)
    printf("%d^4 + %d^4 = %d^4\n",a,b,c);
  return 0;
}


Output:
1
256^4 + 512^4 = 1024^4


Create a new paste based on this one


Comments: