#![allow(unused_imports)] #![allow(non_snake_case)] use std::collections::HashMap; use std::collections::HashSet; #[allow(unused_macros)] macro_rules! read { ([$t:ty] ; $n:expr) => ((0..$n).map(|_| read!([$t])).collect::>()); ($($t:ty),+ ; $n:expr) => ((0..$n).map(|_| read!($($t),+)).collect::>()); ([$t:ty]) => (rl().split_whitespace().map(|w| w.parse().unwrap()).collect::>()); ($t:ty) => (rl().parse::<$t>().unwrap()); ($($t:ty),*) => {{ let buf = rl(); let mut w = buf.split_whitespace(); ($(w.next().unwrap().parse::<$t>().unwrap()),*) }}; } #[allow(dead_code)] fn rl() -> String { let mut buf = String::new(); std::io::stdin().read_line(&mut buf).unwrap(); buf.trim_end().to_owned() } fn main() { let s = read!(String); let cw: Vec = s.chars().filter(|c| c == &'c' || c == &'w').collect(); let mut table_w = Vec::::with_capacity(cw.len()); for _ in 0..cw.len() { table_w.push(0); } for i in (0..cw.len() as isize-1).rev() { let i = i as usize; let dif = if cw[i+1] == 'w' {1} else {0}; table_w[i] = table_w[i+1] + dif; } let mut acc = 0u64; for (i, c) in cw.iter().enumerate() { if c == &'c' { acc += ((table_w[i] as i64) * (table_w[i] as i64 - 1) / 2) as u64; } } println!("{}", acc); }