Your task is to write a program to print the sum of the ASCII codes of the characters of the program itself. You are not allowed to open any file (Any input such as command line arguments, standard input or files is prohibited). Program to print the lowest number wins.
Here is an example (not the shortest) of such a program written in C:
#include <stdio.h>
int main(){
printf("4950");/*i*/
return 0;
}
(no new line after }
)