1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <stdarg.h> f(m) { int i,s=0; for(i=0;i<m;i++) s+=i; return s; } main() { exit (0); }