【Python】AtCoder Beginner Contest193 A問題 解答 Atcoder 2021.08.01 この記事は約1分で読めます。 A問題 Discount a,b = map(int,input().split()) print(((a-b)/a)*100) 12 a,b = map(int,input().split())print(((a-b)/a)*100)
コメント