RosettaCodeData/Task/Long-multiplication/XPL0/long-multiplication.xpl0
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
237 B
Text

include c:\cxpl\stdlib;
char Two64, Product(40);
[Two64:= "18446744073709551616";
StrNMul(Two64, Two64, Product, 20);
Product(39):= Product(39)!$80; \terminate string
Text(0, Product+1); \skip leading zero
]