#ord: 문자>아스키

#chr: 아스키>문자

char1 = input()
char1 = ord(char1)
print(chr(char1+1))

#map(int,input().split()): 정수로 받고 공백을 기준으로 구별

a,b = map(int,input().split())
print(a-b)

n번째 자릿수까지 반올림한 값을 출력하고 싶다면

%.nf 형태로 출력 형식

a,b = map(float,input().split())
f = a/b
print("%.3f"%f)

변수 참조 노하우

a, b, c = input().split()
a=int(a)
b=int(b)
c=int(c)
hap=a+b+c
avg=hap/3
print(hap, format(avg, ".2f"))

#xor 연산 표현 방법

a,b = map(int, input().split())
c = bool(a)
d = bool(b)
print(c ^ d)
print((c and (not d)) or ((not c) and d))