A. if(x>0) print(x)else print(-x) B. if x>0 print(x)else print(-x) C. if x>0: print(x)else print(-x) D. if x>0: print(x)else:print(-x)