#!/usr/bin/env python3 # -*- coding: utf-8 -*- def main(): S = input() ans = S.replace(" ", " ") print(ans) if __name__ == "__main__": main()