#!/usr/bin/env python3 # -*- coding: utf-8 -*- def main(): N = int(input()) A = 0 B = N print(A, B) if __name__ == "__main__": main()