짱해커가 되어보자

boj 4458 본문

프로그래밍_일반/백준

boj 4458

Spadework 2020. 2. 24. 18:05

* Solved 기준 브론즈2 단순 풀이

for _ in range(int(input())):
	s = input()
	print(s[0] if s[0]>='A' and s[0]<='Z' else chr(ord(s[0])-32), s[1:], sep='')

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 13300  (0) 2020.02.24
boj 11945  (0) 2020.02.24
boj 15969  (0) 2020.02.24
boj 2711  (0) 2020.02.23
boj 5586  (0) 2020.02.23
Comments