#agc034b. [agc034_b]ABC

[agc034_b]ABC

Problem Statement

You are given a string ss consisting of A, B and C.

Snuke wants to perform the following operation on ss as many times as possible:

  • Choose a contiguous substring of ss that reads ABC and replace it with BCA.

Find the maximum possible number of operations.

Constraints

  • 1leqsleq2000001 \\leq |s| \\leq 200000
  • Each character of ss is A, B and C.

Input

Input is given from Standard Input in the following format:

ss

Output

Find the maximum possible number of operations.


Sample Input 1

ABCABC

Sample Output 1

3

You can perform the operations three times as follows: ABCABCBCAABCBCABCABCBCAA. This is the maximum result.


Sample Input 2

C

Sample Output 2

0

Sample Input 3

ABCACCBABCBCAABCB

Sample Output 3

6