#!/usr/bin/env python3 # -*- coding: utf-8 -*- def main(): N = int(input()) print("decimal") print(N + 0.0001) if __name__ == "__main__": main()