问答题

已知程序如下:
a=int(input("请输入一个整数:"))if a>5:    b=a+1elif a<0:    b=a-1else:    b=aprint(b)
执行该程序后,当用户输入为3时,输出b的值为________。

【参考答案】

3