X015


Submit solution

Points: 10
Time limit: 1.0s
Memory limit: 493M

Problem type

Cho xâu \(S\) và một ký tự \(Ch\).

Yêu cầu: Xóa ký tự \(Ch\) xuất hiện trong xâu \(S\). In ra xâu \(S\) sau khi xóa đi kí tự \(Ch\)

Dữ liệu:

  • Dòng 1 là chuỗi kí tự \(S\) có độ dài nhỏ 100 ký tự,

  • Dòng 2 là ký tự \(Ch\).

Kết quả:

  • In xâu \(S\) sau khi xóa đi kí tự \(Ch\).

Sample Input

ababcaca
a

Sample Output

bbcc

Comments

There are no comments at the moment.