跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2742. BerOS file system

    ID: 2748 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>模拟编程与模拟进阶难度共享题库Codeforces英文题面题目来源题面语言

BerOS file system

题目描述

A. BerOS file system
time limit per test
2 seconds
memory limit per test
64 megabytes
input
standard input
output
standard output

The new operating system BerOS has a nice feature. It is possible to use any number of characters '/' as a delimiter in path instead of one traditional '/'. For example, strings //usr///local//nginx/sbin// and /usr/local/nginx///sbin are equivalent. The character '/' (or some sequence of such characters) at the end of the path is required only in case of the path to the root directory, which can be represented as single character '/'.

A path called normalized if it contains the smallest possible number of characters '/'.

Your task is to transform a given path to the normalized form.

Input

The first line of the input contains only lowercase Latin letters and character '/'− the path to some directory. All paths start with at least one character '/'. The length of the given line is no more than 100 characters, it is not empty.

Output

The path in normalized form.

Examples
Input
//usr///local//nginx/sbin
Output
/usr/local/nginx/sbin

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2409 题。保留原作者与原赛事署名。