RosettaCodeData/Task/A+B/AutoHotkey/a+b.ahk
2013-04-10 14:58:50 -07:00

3 lines
157 B
AutoHotkey

InputBox, input , A+B, Two integer numbers`, separated by space.
StringSplit, output, input, %A_Space%
msgbox, % output1 . "+" . output2 "=" output1+output2