trying to get multiple input,but getting wrong values


loop:
ADCON0 = %10000001 ' Configure and turn on A/D Module
ADCIN porta.0, input1
pause 50

ADCON0 = %10001001 ' Configure and turn on A/D Module
ADCIN porta.1, input2
pause 50

Lcdout $fe, 1 ' Clear LCD
Lcdout "Value1: ", DEC input1 ' Display the decimal value
lcdout $FE,$C0, "Value2: ", dec input2
Pause 400

Goto loop