[ prog / sol / mona ]

prog


Marvin Minsky - The Beauty of the Lisp Language

54 2020-10-07 01:53

>>52
#include <stdio.h>
#include <gmp.h>
int main(){
mpz_t inp;mpz_init(inp);
mpz_inp_str(inp,stdin,10);
mpz_add_ui(inp,inp,1);mpz_out_str(stdout,10,inp);
mpz_clear(inp);}

301


VIP:

do not edit these